I have the following code:
%let host = HostThatSendsEmail;
%let todayDate = &SYSDATE9;
signon host;
rsubmit;
filename mail email to = ("PersonGettingEmail")
from= "PersonSendingEmail"
SUBJECT="Today is &todayDate";
data _null_;
file mail;
put 'Dear All';
put 'Today is &todayDate';
run;
endrsubmit;
The macro date does not get inputed into the email when the code is run. The resulting email should read:
Dear all Today is 29Mar12.
Instead it reads:
Dear all Today is &TodayDate
Is there some piece of code I am missing?