Date: Fri, 6 Aug 2004 19:39:39 +0300
Reply-To: Nina Harris <sas@MAILINATOR.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Nina Harris <sas@MAILINATOR.COM>
Subject: sas email via outlook2003
Content-Type: text/plain;
would anyone have a working solution for sending email via outlook 2003 and
sas?
I can get sas to send the email but it is stopped by the security warning
that some program
is trying to send email as me and the dialog "Yes" (from outlook2003) must
be pressed manually
to get the message out
this obviously makes it impossible to send unattended email from a batch sas
job
this is the sample code
filename m email from=""me@at.work""
to="someone@stuff.com"
subject="stuff"
content_type="text/html";
data _null_; file m; put "stuff";
run;