SAS Tech Support is your best option with this type of problem if you haven't done tracked this already.
Also does this help? http://azuredummies.com/2016/06/21/451-5-7-3-starttls-is-required-to-send-mail-office-365/
I just googled your error and this was the first search item found.
Email in SAS works out of the box.
Can you show what your code is?
Hello,
you are right. E mail functionality in SAS is out of the box and did not expected any issues but anyway, please find my sample code example to test the functionality:
-------------------------------------------
options emailsys = smtp emailhost = "myhost" emailport = portnumber emailid = "senderadress" emailpw="pwd";
filename outbox email to='someone@mail.comm' type='text/html' subject='Just a test' ; data temperatures; do centigrade = -40 to 100 by 10; fahrenheit = centigrade*9/5+32; output; end; run; ods html body=outbox /* Mail it! */ rs=none; title 'Centigrade to Fahrenheit conversion table'; proc print; id centigrade; var fahrenheit; run; ods html close;
---------------------------------------------
And when i submit it i am receiving the following error message "...ERROR: Email: 451 5.7.3 STARTTLS is required to send mail...."
I forgot to mention that we would like to send the mail via SMTP server Office 365 .
BR
I think it is office 365 issue. Please have a look here.
https://www.moh10ly.com/emails-between-o365-and-on-premises-do-not-work/
https://www.linkedin.com/pulse/451-573-starttls-required-send-mail-error-office-365-ahmad-yasin
Have a discussion with Windows/office 365 teams
Thanks! I will start a discussion with our office265 team.
But could it be that because our SAS Web App server is currently not configured for HTTPS , that this could be the reason also?
"But could it be that because our SAS Web App server is currently not configured for HTTPS , that this could be the reason also?"
Based upon my experience, I would say no. HTTPS configuration is not essential.
SAS Tech Support is your best option with this type of problem if you haven't done tracked this already.
Also does this help? http://azuredummies.com/2016/06/21/451-5-7-3-starttls-is-required-to-send-mail-office-365/
I just googled your error and this was the first search item found.
The SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment.
SAS technical trainer Erin Winters shows you how to explore assets, create new data discovery agents, schedule data discovery agents, and much more.
Find more tutorials on the SAS Users YouTube channel.