<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Embedding an Image in a html template Email</title><link>https://community.appian.com/discussions/f/general/10458/embedding-an-image-in-a-html-template-email</link><description>Hi guys, 
 I know that this discution has already been opened. But i Have tried a lot of ways to put an image to my html template to send an email. 
 Like: 
 
 put this, &amp;lt;p&amp;gt;&amp;lt;img alt=&amp;quot;Embedded Image&amp;quot; src=&amp;quot;data:image/png;base64,###base64String###&amp;quot;/&amp;gt;&amp;lt;/p</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Embedding an Image in a html template Email</title><link>https://community.appian.com/thread/146217?ContentTypeID=1</link><pubDate>Wed, 12 Mar 2025 17:35:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d3ad401e-8739-44c6-b0c7-780869c0ba3f</guid><dc:creator>sireesha</dc:creator><description>&lt;p&gt;Is it working for you?Please give me any working solution if you have any&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Embedding an Image in a html template Email</title><link>https://community.appian.com/thread/74214?ContentTypeID=1</link><pubDate>Wed, 20 May 2020 07:02:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7f1d59b7-e9e0-4647-8e50-7f4fccd9fff6</guid><dc:creator>soujanya B</dc:creator><description>&lt;p&gt;My requirement is bit same , I am trying to map the img to email template dynamically from send email smart service as a paramter.&lt;/p&gt;
&lt;p&gt;But i am not getting image displayed in Email.&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=windows-1252&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body bgcolor=&amp;quot;lightblue&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;div style=&amp;quot;&amp;quot; $email_style;&amp;quot;&amp;quot;=&amp;quot;&amp;quot;&amp;gt;&lt;br /&gt; Hi ###RecipientName###,&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt; &amp;lt;br&amp;gt;&lt;br /&gt; &amp;lt;div dir=&amp;quot;&amp;quot; ltr&amp;quot;&amp;quot;=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot; left&amp;quot;&amp;quot;=&amp;quot;&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;Your Loan Forgiveness Request : ###ForgId### is ###Action### &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt; &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;You can view this request details in the dashboard here &amp;lt;a href=&amp;quot;&lt;a href="https://tcstemp.appiancloud.com/suite/sites/lfs-portal/page/forgiveness-requests"&gt;&amp;quot;&amp;gt;xxxxxxxxxxxxxxxxxxxxxxxx&amp;quot;&amp;gt;Forgiveness&lt;/a&gt; ID-###ForgId###&amp;lt;/a&amp;gt; .&lt;br /&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;Thank you, &amp;lt;br&amp;gt;&lt;br /&gt;###Sender###&amp;lt;p&amp;gt;&lt;br /&gt;&amp;lt;img src=\&amp;quot;###image###\&amp;quot; width=&amp;quot;85&amp;quot; height=&amp;quot;85&amp;quot;&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;i&amp;gt;This is a system generated email. Please do not reply to this mail.&amp;lt;/i&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please confirm is this correct&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Embedding an Image in a html template Email</title><link>https://community.appian.com/thread/54185?ContentTypeID=1</link><pubDate>Sun, 15 Apr 2018 22:42:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0846ffa6-e23c-4c07-8906-33acc6103951</guid><dc:creator>aloks0189</dc:creator><description>Hi &lt;a href="/members/guilhermec891"&gt;Guilherme Canteiro&lt;/a&gt;  if this image is static/fixed then in such case, you can convert this image to base64 format (using any online website) and put the generated base64 code in html template as mention below:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;img src=&amp;quot;data:image/png;base64,--your 64--&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This should work. I know in this way the image will be hardcoded, but I believe it&amp;#39;s a signature image hence its size won&amp;#39;t be that big and this doesn&amp;#39;t need to be dynamic, and this will make sure that the image always renders whenever this html template page loads/executes.&lt;br /&gt;
&lt;br /&gt;
Hope this will help.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Embedding an Image in a html template Email</title><link>https://community.appian.com/thread/54184?ContentTypeID=1</link><pubDate>Sun, 15 Apr 2018 20:44:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bd3ae752-68cb-4515-911d-3f786919557c</guid><dc:creator>Ravi Roshan</dc:creator><description>Did you get the solution for this?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>