BookmarkSubscribeRSS Feed
ryansy
Calcite | Level 5

 

options emailsys=smtp
        emailhost=("smtp.mycompany.com" STARTTLS)
        emailport=25;

filename mail email
        from="me@mycompany.com"
        to="you@yourcompany.com"
        subject="SAS test email "
        debug;

data _null_;
    file mail;
    put "Hello, this is a test.";
run;

Hi all,

 

I am trying to send an email via SAS Studio 9.4 M6 and getting a warning saying "TLS cipher supports less bits than expected."

 

An upgrade is in the works; using port 587, local postfix or requesting the security team to allow weaker ciphers are not options.

 

Anyone have luck with any other workarounds?

 

Thank you!

 

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 0 replies
  • 195 views
  • 0 likes
  • 1 in conversation