BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

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>'

   FROM='<me>'

         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;

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ

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

View solution in original post

2 REPLIES 2
Cynthia_sas
SAS Super FREQ

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

RussellNonBrand
Calcite | Level 5

Thank you very much!    

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 695 views
  • 0 likes
  • 2 in conversation