The following works perfectly except it is not attaching excel file. When this code runs, it is sending email notification but no attachment in the email notification. I tried the different file and format (txt) for attachment but still not working.
FILENAME OUTBOX EMAIL;
DATA _NULL_;
FILE OUTBOX
SUBJECT = "Status : Macro"
FROM = "abc@gmail.com"
TYPE = 'TEXT/PLAIN'
TO = ("abc@gmail.com")
ATTACH= ("/user/ujjawal/file1.xlsx");
PUT "Check logfile to see whether there is any error";
RUN;
Hi:
The location of the attachment must be available to the e-mail server. This is something that you need to check with your email administrators.
cynthia
Interesting - for both SAS Windows and SAS z/OS (IBM mainframe), I use a remote "SMTP mail server" although my ATTACH=(....) file is local to the system where SAS is executing. Does that jive with your experience, Cynthia?
Scott Barry
SBBWorks, Inc.
Ah, I don't use a remote SMTP server. I suppose it is possible for it to work differently...About ATTACHE=, the doc says only that "The physical name is the name that is recognized by the operating environment."
cynthia
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.