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!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.