When writing email text, it would be nice to be able to package the email text like the other parameters of the emails are packaged.
So instead of generating a warning (I have no control of the message contents) with:
%let msg= "<html><h1>P&L Summary</h1>" / "more text" ;
data _null_;
file _EMAIL ;
put &msg. ;
...
I could wrap it like the other email parameters are wrapped:
data _null_;
file _EMAIL ;
LINE=symget(msg);
put '!EM_MESSAGE! ' LINE ;
...
This last example would not generate a
WARNING: Apparent symbolic reference L not resolved.
message.
Just an idea...