Quizzes & Puzzles10 mins ago
Sending email through SAS
0 Answers
Hi,
I have an email command through SAS that once ran will run send an email to a specific email address�.
How can I tweak my below code so that the email automaticallys run at a specific time? (i.e. If I wanted the email to automatically send at 10pm at night how do I do this?)
rsubmit;
filename mail email "[email protected]"
subject = "Test email sent using SAS";
data _null_;
file mail;
put "Can you let me know if you get this";
run;
Many Thanks
Chris
I have an email command through SAS that once ran will run send an email to a specific email address�.
How can I tweak my below code so that the email automaticallys run at a specific time? (i.e. If I wanted the email to automatically send at 10pm at night how do I do this?)
rsubmit;
filename mail email "[email protected]"
subject = "Test email sent using SAS";
data _null_;
file mail;
put "Can you let me know if you get this";
run;
Many Thanks
Chris
Answers
Best Answer
Nobody has yet answered this question. Once some answers have been given, Chris100682 will be able to select one answer as the best. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.There are no answers available for this question.
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.