Kindly assist me on this problem.
I trying to send an email with an image embedded in the body of them email as shown below:
The image I am trying to send will change every time the Process runs, as the process is supposed to capture a screenshot of a table in a website and send it through email to intended recipients.
Attached is the workflow I have built:
SendEmailInline.xaml (13.3 KB)
However the email that I received is as such:
The image is supposed to appear in the place where the x is appearing.
I am using the method to change the image to base64
Below is the HTML code used to for the body of the email:
<p><span style=font-size:11pt><span style=background-color:white><span style=font-family:Calibri,sans-serif><strong><span style=font-size:10.5pt><span style=font-family:"Segoe UI",sans-serif><span style=color:#273139>Dear All/Stakeholders,</span></span></span></strong></span></span></span></p>
<p> </p>
<p><span style=font-size:11pt><span style=background-color:white><span style=font-family:Calibri,sans-serif><span style=font-size:10.5pt><span style=font-family:"Segoe UI",sans-serif><span style=color:#273139>Please find the summary unclosed Interaction Resolution Time For <strong>(Date amend follow days escalate)</strong></span></span></span></span></span></span></p>
<p><span style=font-size:11pt><span style=background-color:white><span style=font-family:Calibri,sans-serif><span style=font-size:10.5pt><span style=font-family:"Segoe UI",sans-serif><span style=color:#273139>We are focusing <strong>On Case Area –Complaint (Active) & To Resolve all cases (highlight RED) By today.</strong></span></span></span></span></span></span></p>
<p><span style= font-size:11pt ><span style= background-color:white ><span style= font-family:Calibri,sans-serif ><span style= font-size:10.5pt ><span style= font-family:"Segoe UI",sans-serif ><span style= color:#273139 >Kindly refer To the detailed list Of unclosed interactions attached.</span></span></span></span></span></span></p>
<p><span style= font-size:11pt ><span style= background-color:white ><span style= font-family:Calibri,sans-serif ><span style= font-size:10.5pt ><span style= font-family:"Segoe UI",sans-serif ><span style= color:#273139 >Please Take necessary action To avoid aging more than the target.</span></span></span></span></span></span></p>
<p><span style= font-size:11pt ><span style= background-color:white ><span style= font-family:Calibri,sans-serif ><span style= font-size:10.5pt ><span style= font-family:"Segoe UI",sans-serif ><span style= color:#273139 >Thank you.</span></span></span></span></span></span></p>
<p> </p>
<p><span style= font-size:11pt ><span style= background-color:white ><span style= font-family:Calibri,sans-serif ><strong><u><span style= font-size:10.5pt ><span style= font-family:"Segoe UI",sans-serif ><span style= color:#273139 >Billing</span></span></span></u></strong></span></span></span></p>
<img "+"src=""data:image/jpeg;base64Image,"+base64FmtOfPSB+"""/>
<p> </p>
<p><span style= font-size:11pt ><span style= background-color:white ><span style= font-family:Calibri,sans-serif ><strong><u><span style= font-size:10.5pt ><span style= background-color:white ><span style= font-family:"Segoe UI",sans-serif ><span style= color:#273139 >Non billing</span></span></span></span></u></strong></span></span></span></p>
<img src=""data:image/png;base64Image,"+base64FmtOfPSNB+"""/>
This is the part of the process where I convert the image to the base64 image.
Please assist me on how to get the image embedded properly and sent out.
Thank you.