I am very new to SAS. We have a requirement to attach a file and send in an email to outlook from mainframe. I was able to get the code and send the the files as attachments. however the font I would like to have is Courier new. I am receiving the email with 'Times New Roman' in my outlook. It is because of Outlook setup? Here is the code I am using. filename myfile email to = "xxxxxx" from="xxxxx" subject="this is the output file" attach=("xxx.xxx.xxx" name ="Sample report" ext="zip"); Data _NULL_; file myfile; put '******************************'; put '* for *'; put '*this is from xxxxxxx job *'; Run; quit: Though I have the PUT statements ending at the same positions, the formatting is not expected. Please advise where I went wrong.
... View more