<?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: filename outbox email in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584132#M14122</link>
    <description>&lt;P&gt;I just ran your code here and sent the mail to my business account (within the same network/domain).&lt;/P&gt;
&lt;P&gt;When opening the mail in Outlook Web Access, the flyover with "male" (and the colouring) worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interesting side-notes:&lt;/P&gt;
&lt;P&gt;Running your code to create a HTML file, and viewing that via web server and a browser, the title= tags were missing, so no flyover, and&amp;nbsp;also no coloring.&lt;/P&gt;
&lt;P&gt;In the "SAS Report"&amp;nbsp;Tab within EG, the coloring worked, but the flyover not.&lt;/P&gt;
&lt;P&gt;In the HTML tab in EG, both worked.&lt;/P&gt;</description>
    <pubDate>Tue, 27 Aug 2019 06:32:03 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-08-27T06:32:03Z</dc:date>
    <item>
      <title>filename outbox email</title>
      <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584101#M14110</link>
      <description>&lt;P&gt;In an email created by SAS (code below), is there an equivalent to the FLYOVER option?&amp;nbsp; Running on SAS 9.4M4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename outbox email 
	to=("jon.dow@domain.com")
	type='text/html'
	subject="this is a test";

ods html body=outbox rs=none style=statdoc;
proc report data=sashelp.class split=']' missing nowd
	style(column)=[just=l]
	style(header)=[fontweight=bold just=c cellwidth=1in]
	style(report)=[font_size=2];


	title;
	footnote;

	column 
		name sex age;

	define name / display "Name" style(header)=[cellwidth=1.6in];
	define sex / display 'Sex';
	define age / display 'Age' style(column)=[just=r];

	compute sex;
		if sex='M' then do;
			call define('name', "style", "style=[background=cyan flyover='male']");
		end;
	endcomp;
run;
ods html close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Aug 2019 00:30:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584101#M14110</guid>
      <dc:creator>dataMart87</dc:creator>
      <dc:date>2019-08-27T00:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: filename outbox email</title>
      <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584132#M14122</link>
      <description>&lt;P&gt;I just ran your code here and sent the mail to my business account (within the same network/domain).&lt;/P&gt;
&lt;P&gt;When opening the mail in Outlook Web Access, the flyover with "male" (and the colouring) worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interesting side-notes:&lt;/P&gt;
&lt;P&gt;Running your code to create a HTML file, and viewing that via web server and a browser, the title= tags were missing, so no flyover, and&amp;nbsp;also no coloring.&lt;/P&gt;
&lt;P&gt;In the "SAS Report"&amp;nbsp;Tab within EG, the coloring worked, but the flyover not.&lt;/P&gt;
&lt;P&gt;In the HTML tab in EG, both worked.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2019 06:32:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584132#M14122</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-27T06:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: filename outbox email</title>
      <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584312#M14164</link>
      <description>&lt;P&gt;When I open the email in Outlook (thick client installed on my desktop), the color works but not the flyover.&amp;nbsp; The email in this Outlook client is also HTML.&amp;nbsp; So, I would think the flyover should work.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2019 17:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584312#M14164</guid>
      <dc:creator>dataMart87</dc:creator>
      <dc:date>2019-08-27T17:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: filename outbox email</title>
      <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584456#M14175</link>
      <description>&lt;P&gt;Displaying the flyover text is a matter of the user agent, in this case the fat Outlook client. You can only try to take a look at the raw HTML text of the mail. If the title= option is in there, then it's simply Outlook not doing what it should when resolving HTML tags.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 07:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/584456#M14175</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-28T07:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: filename outbox email</title>
      <link>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/591737#M15265</link>
      <description>&lt;P style="margin: 0px 0px 10.66px;"&gt;&lt;SPAN style="margin: 0px; color: #333333; line-height: 107%; font-family: 'Helvetica',sans-serif; font-size: 10.5pt;"&gt;Per SAS TS, the Outlook for desktop (thick client)&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#000000" face="Calibri"&gt;uses the Microsoft Word HTML viewer,&amp;nbsp;which does not recognize this attribute.&lt;SPAN style="margin: 0px;"&gt;&amp;nbsp; &lt;/SPAN&gt;Currently, there is no workaround.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 00:08:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/filename-outbox-email/m-p/591737#M15265</guid>
      <dc:creator>dataMart87</dc:creator>
      <dc:date>2019-09-26T00:08:52Z</dc:date>
    </item>
  </channel>
</rss>

