| Date: | Tue, 10 Nov 2009 13:37:03 -0500 |
| Reply-To: | Norman Weston <nweston@AMGEN.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Norman Weston <nweston@AMGEN.COM> |
| Subject: | Re: from field with email from SAS |
|---|
Try this:
filename mymail email "sendingemail@xyz.com"
to=( &email_list. )
subject="&title_str"
attach=("file.xls" ;
data _null_;
file mymail;
put "&title_str";
run;
the above should send from whatever the sending email address is listed in
the code.
|