How can I get an email data step to send a notification when the SAS program runs from a scheduler? I have a data step that sends an email notification to myself when the SAS process is complete. filename sendmail email ("toaddress@email.com") subject = "this is a test email"; data _null_; file sendmail; /* Body of email */ put ' '; put 'process completed'; put 'The file is located in the following folder'; put 'folder location'; put ' '; run; When I run the process manually when SAS is open, the email notification gets sent. The SAS process, however, is scheduled automatically through windows task scheduler, and although the processs completely runs, i do not get an email notification. Any ideas on how to solve? Thank you, John
... View more