Hi,
I have an issue while trying to email using the SAS program as given below:
filename sendmail email
to=("getpramod.r@gmial.com")
subject="File"
;
data _null_;
file sendmail;
put / "Hi";
run;
I get an error saying :
NOTE: The file SENDMAIL is:
E-Mail Access Device
ERROR: Email: The connection was refused.
NOTE: The SAS System stopped processing this step because of errors.
However, I'm able to send the email using the mailx command in the Unix command line.
Is there something that i neeed to enable in SAS.
Note: My SAS is running on AIX
Thanks in Advance!
Pramod