BookmarkSubscribeRSS Feed
Arjumand
Calcite | Level 5

Hi,

 

I am trying to send a mail using SAS 9.3 using the below statements:

 

filename mymail email To='abc@gmail.com' subject='Connection Status';
data _null_;
file mymail;
put "hi";
run;

 

When I run it, I get an outlook prompt to allow/deny the sending of mail followed with an error in log:-

 

ERROR: Undetermined I/O failure.

 

how to get rid of this error and the warning?

3 REPLIES 3
Quentin
Super User

Hmm, undetermined I/O errors are hard.   Your code works for me, running 9.3 on Win 7:

 

1    filename mymail email To='someone@gmail.com' subject='Test email';
2    data _null_;
3     file mymail;
4    put "hi";
5    run;

NOTE: The file MYMAIL is:
      E-Mail Access Device

Message sent
      To:          someone@gmail.com
      Cc:
      Bcc:
      Subject:     Test email
      Attachments:
NOTE: 1 record was written to the file MYMAIL.
      The minimum record length was 2.
      The maximum record length was 2.

 

Maybe you should check your email options, e.g. emailhost, emailsys, etc.  Mine look like:

6    %put %sysfunc(getoption(emailhost));
LOCALHOST
7    %put %sysfunc(getoption(emailsys));
MAP
Arjumand
Calcite | Level 5

@Quentin: This is what i get:-

 


51 data _null_;
52 %put %sysfunc(getoption(emailhost));
LOCALHOST
53 %put %sysfunc(getoption(emailsys));
MAPI
54 run;

Quentin
Super User
I would suggest working with tech support. They should be able to dig into what may cause the undetermined I/O failure. Your code works for me, and sounds like it works for you, at least as far as SAS telling outlook "Please send and email," and then something breaks.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 2005 views
  • 0 likes
  • 2 in conversation