<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to add an embeded image into an email in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683261#M206937</link>
    <description>&lt;P&gt;Yes, I did &amp;amp; thanks for your reply. Using inlined on an HTML email includes the image file, and it introduces other issues because all the text of the email message, including the greeting and two text paragraphs become strung together without any breaks.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Sep 2020 15:19:09 GMT</pubDate>
    <dc:creator>kareng</dc:creator>
    <dc:date>2020-09-11T15:19:09Z</dc:date>
    <item>
      <title>How to add an embeded image into an email</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683112#M206867</link>
      <description>&lt;P&gt;I have a macro to send a batch of customized email messages with a unique multi-page PDF attachment.&amp;nbsp; The email itself is currently plain text (functioning code is below.) My customer has now requested the email include their graphic signature file at the end of the email. Presently, the file is .jpg but can be saved as other format as well. I have found papers on embedding graphics/images into a file and sending the file as an attachment, not embedding the image into the email body.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Data _NULL_;&lt;BR /&gt;filename mymail email from="sender@domain.org"&lt;BR /&gt;TO = (&amp;amp;rpt_email_em. )&lt;BR /&gt;Readreceipt&lt;BR /&gt;SUBJECT = "Important information in advance of the upcoming meeting"&lt;BR /&gt;ATTACH = ( "&amp;amp;rpt_path_em." content_type="application/pdf")&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;file mymail;&lt;BR /&gt;put "Attention &amp;amp;full_name_em.:";&lt;BR /&gt;put "text statement 1" ;&lt;BR /&gt;put "text statement 2.";&lt;BR /&gt;put;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 22:39:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683112#M206867</guid>
      <dc:creator>kareng</dc:creator>
      <dc:date>2020-09-10T22:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an embeded image into an email</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683135#M206884</link>
      <description>&lt;P&gt;Have you looked at the &lt;FONT face="courier new,courier"&gt;inlined&lt;/FONT&gt; option? Or at sending HTML? See &lt;A href="https://blogs.sas.com/content/sgf/2017/04/21/use-sas-send-email-embeds-graph-body-email/" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 01:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683135#M206884</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-09-11T01:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an embeded image into an email</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683261#M206937</link>
      <description>&lt;P&gt;Yes, I did &amp;amp; thanks for your reply. Using inlined on an HTML email includes the image file, and it introduces other issues because all the text of the email message, including the greeting and two text paragraphs become strung together without any breaks.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 15:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683261#M206937</guid>
      <dc:creator>kareng</dc:creator>
      <dc:date>2020-09-11T15:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an embeded image into an email</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683326#M206949</link>
      <description>&lt;P&gt;SOLVED!&lt;/P&gt;&lt;P&gt;Using inlined, the ods html for the the body of the email as well as proc odstext, I got it figured out!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 18:16:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683326#M206949</guid>
      <dc:creator>kareng</dc:creator>
      <dc:date>2020-09-11T18:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an embeded image into an email</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683385#M206984</link>
      <description>&lt;P&gt;Glad this was a useful solution.You could also insert &amp;lt;p&amp;gt; or &amp;lt;br&amp;gt; tags.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 03:28:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-add-an-embeded-image-into-an-email/m-p/683385#M206984</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-09-12T03:28:15Z</dc:date>
    </item>
  </channel>
</rss>

