LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2005, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page