Hi ,
I installed in my computer SAS 9.1 (A version of students).
Im new with sas....
now Im trying to send email with SAS.
As i read i I passed through :
C:\Program Files\SAS\SAS 9.1\nls\en to sasV9 and insert the folowing statments:
-EMAILAUTHPROTOCOL=LOGIN
-EMAILHOST smtp.mail.yahoo.com
[email protected]
-EMAILPW= my password
-EMAILPORT 25
-EMAILSYS SMTP
I saved the changes and open sas code and wrote the folowing code:
filename mail email "
[email protected]";
data _null_;
file mail;
put "test";
run;
I get this error:
ERROR: Unable to connect to SMTP server.
ERROR: connect call failed, system error is '10013 - WSAEACCES'.
What could be the reason?