Hey everyone,
I have a quick question. I have the following code to email me an ODS output, but for some reason it emails me two times every time it runs. Any ideas?
Thanks!
FILENAME mail EMAIL
TO= '<email>'
SUBJECT="Promo Report"
ATTACH='/directory/Promo_Enroll.xls';
DATA _NULL_;
FILE mail;
PUT 'Good Morning,';
PUT ' ';
PUT 'Attached you will find the updated Promo Enrollees and Qualifiers by market.';
PUT 'Feel free to contact me with any questions.';
PUT ' ';
PUT "!EM_SEND!";
RUN;
Hi:
I suspect the !EM_SEND -- the EMAIL engine is doing one send; the EM_SEND will end up doing another. When I send email, I use the technique (see page 7) shown in my SGF "Greatest Hits" paper:
http://support.sas.com/resources/papers/proceedings11/300-2011.pdf
And, if you search Tech Support notes, you will find a very relevant note:
http://support.sas.com/kb/5/849.html
cynthia
Hi:
I suspect the !EM_SEND -- the EMAIL engine is doing one send; the EM_SEND will end up doing another. When I send email, I use the technique (see page 7) shown in my SGF "Greatest Hits" paper:
http://support.sas.com/resources/papers/proceedings11/300-2011.pdf
And, if you search Tech Support notes, you will find a very relevant note:
http://support.sas.com/kb/5/849.html
cynthia
Thank you very much!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.