
Dear Community
I have completed my first FLOW, but I do have a question that I can't find an answer to.
I have created a flow to Automatically send an email "When the file is created or modified" on the Site Pages, practically if there are new NEWS created then the community member will get notified via email.
For the email self I have found two different approaches:
1. Pick up from the NEWS its parts
2. Construct the email, extract the email`s HTML code, and plug it in. Therefore the email looks prettier.
However, I try to find a solution how to combine these methods, because I would like to add to my HTML code the <img scr="body/BannerImageURL"> possibility.
The goal would be always to have a NEWS Banner picture and not to upload the pictures separately.
Hi @annahorodecka :
The <img> tag supports images in base64 format. If you don't want to upload the image, then you can convert the image into a base64 string as the value of scr:
I think this link will help you a lot:
How to Display Base64 Images in HTML
Best Regards,
Bof