Date: Tue, 28 Jun 2005 10:05:03 -0400
Reply-To: Chris Brooks <Chris.Brooks@ONS.GOV.UK>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Chris Brooks <Chris.Brooks@ONS.GOV.UK>
Subject: Re: Email sas graph output
Larry
Are you using SAS 9 Integration Technologies? If you are you could use the
Publishing Framework to publish to a Channel or directly to an individual
Email address.
Chris
Chris Brooks
Office for National Statistics
United Kingdom
On Tue, 28 Jun 2005 09:37:44 -0400, Larry Kaskey <LKaskey@TRACFONE.COM>
wrote:
>Hello all:
>
>I am trying to send an email via my sas code using Enterprise guide.
This email will contain a sas line plot and I would like to send just the
output (no attachment).
>
>I can send the email, but the output doesn't come through. I get the
following message. Can anyone help with this?
>
>"Sorry, there was a problem with the Graph control or plug-in in your
browser. The graph "Plot of freq * r_date = TOSS_PART_NUM" cannot be
displayed. "
>
>My code is as below:
>filename outbox email
> to='lkaskey@tracfone.com'
> type='image/html'
> subject="SAS/GRAPH Output";
>
>
>ods html
> body=outbox /* Mail it! */
> rs=none;
|