Hi, I am working on a Report which inloves Email the Report. Here i am able send the only Text Email using the SAS Like Filename Name Email Subject = "Test" From = "Email" To = "Email" CT = "Text/Html"; Data _Null_; File Name ; Put "Emailing is success full"; Run; But When i am taking the Result in Output of Email Body i am only getting the Source code in it. Filename Name Email Subject = "Test" From = "Email" To = "Email" CT = "Text/Html"; ODS Html rs=none; Proc Print Data = Sashelp.calss; run; ods html close;
... View more