BookmarkSubscribeRSS Feed
shivrajpawar98
Fluorite | Level 6

Hi All,

 

Can anyone help me , i need to send a email though sas code (SMTP protocol) on sas viya4.

How can i do it.

 

Regards,

Shivraj

1 REPLY 1
SASKiwi
PROC Star

I suggest you talk to your SAS administrator to see if the sending of email from Viya has been successfully implemented and to find out what SAS email settings are required. You can also run this program to find out what your default email settings are:

proc options group = email; 
run;

If no EMAILHOST server has been set then it is likely email is not configured on your SAS installation. 

 

If email settings are populated then you could try a simple test like this:

filename mymail email "My.EmailName@gmail.com"
         subject="SAS Email Test"
         ;

data _null_;
   file mymail;
   put 'This is a test.';
run;

SAS Innovate 2025: Register Today!

 

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

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
  • 1 reply
  • 575 views
  • 0 likes
  • 2 in conversation