BookmarkSubscribeRSS Feed
shivrajpawar98
Obsidian | Level 7

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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1173 views
  • 0 likes
  • 2 in conversation