Hi
I've been using for years this kind of program to send emails with SAS :
options emailsys=smtp emailhost="my.smtp" emailport=25;
filename mymail email
from="my_email_adress@mail.com"
to="someone@mail.com"
Subject="Test";
data _null_;
file mymail;
put "this is a test";
run;
nothing but classic things here but... the program is not working anymore while the exact same program works for other people in my organisation. The only difference between them and me?
Windows 10 for me
an older version of Windows for them
it's not a problem with the firewall... I turned of the firewall and it's doesn't work.
I tried other values for emailport (465, 587) still not working..
The only message I have in my log is :
ERROR: E-mail : The connection has timed out.
any clue ?
best regards
Sébastien