<?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: Add Text to ODS MSOffice2K Email in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180837#M12687</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the ODS MSOffice2K TEXT= option to add your text that you would like to display in the body of the email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;filename mymail email &lt;BR /&gt;&amp;nbsp; to= ("me.com")&lt;/P&gt;&lt;P&gt;&amp;nbsp; subject="Tracking"&lt;/P&gt;&lt;P&gt;&amp;nbsp; content_type="text/html";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ods MSOffice2K &lt;/P&gt;&lt;P&gt;body=mymail&lt;/P&gt;&lt;P&gt;style=BarrettsBlue;&lt;/P&gt;&lt;P&gt;ods msoffice2k text="this is a test"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data=sashelp.class;&lt;BR /&gt;class age;&lt;BR /&gt;var height;&lt;BR /&gt;table age,height;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods msoffice2k close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jun 2014 18:57:28 GMT</pubDate>
    <dc:creator>Chevell_sas</dc:creator>
    <dc:date>2014-06-02T18:57:28Z</dc:date>
    <item>
      <title>Add Text to ODS MSOffice2K Email</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180836#M12686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to add some text to a daily process that creates some PDF's, attaches them to an email, writes a proc tabulate table to the body of the email and sends.&amp;nbsp; I normally would use a data _null_ and put statement to write text to the body of the email, but that seems to generate a second email rather than writing to the same email.&amp;nbsp; I have tried ODS HTML TEXT as well with the same result.&amp;nbsp; Does anyone know how to accomplish this?&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Send Email */&lt;/P&gt;&lt;P&gt;option emailhost='localhost'; &lt;/P&gt;&lt;P&gt;filename mymail email&lt;/P&gt;&lt;P&gt;&amp;nbsp; from="me"&lt;/P&gt;&lt;P&gt;&amp;nbsp; sender="me"&lt;/P&gt;&lt;P&gt;&amp;nbsp; to= ("me")&lt;/P&gt;&lt;P&gt;&amp;nbsp; subject="Tracking"&lt;/P&gt;&lt;P&gt;&amp;nbsp; content_type="text/html"&lt;/P&gt;&lt;P&gt;&amp;nbsp; attach = ('Sample1.pdf'&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; 'Sample2.pdf'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods MSOffice2K &lt;/P&gt;&lt;P&gt;body=mymail&lt;/P&gt;&lt;P&gt;style=BarrettsBlue;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;proc tabulate code&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods msoffice2k close;&lt;/P&gt;&lt;P&gt;goptions reset=all;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 16:18:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180836#M12686</guid>
      <dc:creator>P5C768</dc:creator>
      <dc:date>2014-06-02T16:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add Text to ODS MSOffice2K Email</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180837#M12687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the ODS MSOffice2K TEXT= option to add your text that you would like to display in the body of the email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;filename mymail email &lt;BR /&gt;&amp;nbsp; to= ("me.com")&lt;/P&gt;&lt;P&gt;&amp;nbsp; subject="Tracking"&lt;/P&gt;&lt;P&gt;&amp;nbsp; content_type="text/html";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ods MSOffice2K &lt;/P&gt;&lt;P&gt;body=mymail&lt;/P&gt;&lt;P&gt;style=BarrettsBlue;&lt;/P&gt;&lt;P&gt;ods msoffice2k text="this is a test"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data=sashelp.class;&lt;BR /&gt;class age;&lt;BR /&gt;var height;&lt;BR /&gt;table age,height;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods msoffice2k close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 18:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180837#M12687</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2014-06-02T18:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add Text to ODS MSOffice2K Email</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180838#M12688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; Works perfectly.&amp;nbsp; Might you also now how to control line breaks in &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ods MSOffice2K&lt;/SPAN&gt;?&amp;nbsp; When I use the HTML breaks I would use for ODS HTML, it does not apply them.&amp;nbsp; Or how to control the font?&amp;nbsp; Style(fontweight=BOLD) does not seem to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 20:24:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Add-Text-to-ODS-MSOffice2K-Email/m-p/180838#M12688</guid>
      <dc:creator>P5C768</dc:creator>
      <dc:date>2014-06-02T20:24:09Z</dc:date>
    </item>
  </channel>
</rss>

