| Date: | Fri, 30 Sep 2005 14:42:32 -0700 |
| Reply-To: | andrew_purser@HOTMAIL.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | andrew_purser@HOTMAIL.COM |
| Organization: | http://groups.google.com |
| Subject: | Re: EMAILSYS and SMTP |
|
| In-Reply-To: | <4ce1214005092921297ae46780@mail.gmail.com> |
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
Hi Chuck,
I assume you are using ODS to generate your emailed output. I suspect
that you are right and your notes client is not rendering the embedded
CSS information correctly.
In version 9 there is a HTML3 ODS destination which does excatly what
it says on the tin. Using this could be your solution.
ods html3 file = 'C:\Temp\HTML_3_OUTPUT.html';
proc print data=sashelp.class;
run;
ods html3 close;
Hope this helps.
Cheers,
Andrew
|