Use following. Keep adding Proc Report for all additional dataset you want to send in email:- filename temp email TO=("email@domainname.com") subject="POC starting Queue" type="text/html" from = "youremail@domainname.com"; ODS html body=temp style = analysis; ods html text = "Hi All"; ods html text = " "; ods html text = "Following Accounts are pending POC :-"; PROC Report data=RVPOCFINAL nowd HEADLINE HEADSKIP style (report) = {background = white font_face = "Verdana" font_size = 7pt just=left } style (column) = {background = white CELLHEIGHT = 2.5% font_face = "Verdana" font_size = 7pt just=left} style (header) = {foreground = cx5e2750 font_face="Verdana" font_size = 8pt just=left background = white} ; columns column_name1 column_name2 column_namexx ; run;
... View more