filename MyMail Email from = "yyy.blah.com" to = "xxx.blah.com" subject = "Locations whose count is >7 " type = "text/html";
ods html body = MyMail style=journal; title1 "Hi All,"; title2 "Please find below Locations whose count is greate than 7"; proc report data = Dummy; where count > 7; footnote1 "Thanks and Regards,"; footnote2 "YYY";
run;
ods _all_ close;
... View more