BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I would like to send a one-line email message out of SAS using the X command. Is there a way to do that?

We are an MS Windows server installation with 9.0 and use Outlook Exchange Server?

Basically is there a DOS-like way to send a one line message using Outlook?
2 REPLIES 2
deleted_user
Not applicable
I don't know the DOS-like outlook command but to send emails in SAS I use this :

filename outbox email "toto@toto.com" ;

data _null_;
file outbox
subject="Subject of your email";
put "Your text";
run;

You can find anothers examples (more detailed) in the "Samples" Section of this site with the keyword "email".
StanleyJones
Calcite | Level 5

Have you tried to sending a mail using a DATA Step, or using conditional logic in a DATA Step

? And for the DOS-command, I am not sure if there is any viability or not. You can try the reference solution provided above.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Discussion stats
  • 2 replies
  • 910 views
  • 2 likes
  • 2 in conversation