I am adding SASLOG without revealing text.
[pre]
NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) 9.1 (TS1M3)
NOTE: This session is executing on the z/OS V01R09M00 platform.
NOTE: SAS 9.1.3 Service Pack 4
[\pre]
[pre]
FILENAME mail EMAIL;
DATA _NULL_;
INFILE 'ab.userid.SAS.INPUT1';
INPUT eno $ 1-8 mailaddress $ 9-38
weblink $ 39-60 fil 61-80;
FILE mail
FROM='ab@abc.com'
content_type='text/html'
REPLYTO='ab@abc.com';
PUT '!EM_SUBJECT!' 'You got a test mail from NYTD Survey';
PUT '!EM_TO!' mailaddress;
ODS HTML BODY=mail STYLE=sasweb;
ods html text='
mytext
';
[/pre]
WARNING: The quoted string currently being processed has become more than 512 chcharacters long. You may have unbalanced quotation marks.
[pre]
83 PUT '!EM_SEND!' / '!EM_NEWMSG!';
84 IF eof THEN PUT '!EM_ABORT!';
85
86 RUN;
[/pre]
NOTE: Variable none is uninitialized.
NOTE: Variable eof is uninitialized.
NOTE: The infile 'ab.userid.SAS.INPUT1' is:
Dsname=ab.userid.SAS.INPUT1,
Unit=3390,Volume=xxxxx,Disp=SHR,Blksize=80, Lrecl=80,Recfm=FB
ERROR: File is in use, .
ERROR: File is in use, .
ERROR: File is in use, .
NOTE: 0 records were read from the infile 'SS.GUMURVY.SAS.INPUT1'. NOTE: The SAS System stopped processing this step because of errors. NOTE: The DATA statement used 0.08 CPU seconds and 17553K.
NOTE: The address space has used a maximum of 644K below the line and 18660K abo
87 ods html close;
ERROR: No TO= address specified for email.
ERROR: No TO= address specified for email.
ERROR: No TO= address specified for email.
88
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414