here is my code to send mail but a error arises please help to solve it.
Did you have a program that did what you wanted before adding macro elements?
here is my macro to send mail through sas but above mentioned error arises cipher can't be created... what changes can i do to remove the error.
%macro Frm_send_email(TO=,FROM=,SUBJECT=,ATTACHMENT=,BODY=);
%if &to ne %then
%let TO="&TO";
%if &from ne %then
%let from=FROM="&FROM";
%IF &SUBJECT ne %THEN
%LET subject=SUBJECT="&SUBJECT";
%IF &ATTACHMENT ne %THEN
%LET attachment=ATTACHMENT="&ATTACHMENT";
%IF &BODY ne %THEN
%LET BODY="&BODY";
options emailhost=(
"smtp.gmail.com" port=465
SSL auth=plain
id="sample@gmail.com"
pw="***********" );
FILENAME outbox EMAIL &TO &FROM &SUBJECT &ATTACHMENT;
DATA _NULL_;
FILE outbox;
PUT &BODY;
RUN;
%MEND Frm_send_email;
options mlogic mprint symbolgen;
%Frm_send_email(TO=sample.com,FROM=sample@gmail.com,SUBJECT=details,ATTACHMENT=,BODY=here is it take a look);
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.