- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I would like to send a report by email but I receive the following error message:
ERROR: E-mail : 452 4.3.1 Insufficient system resources
Here's a test code:
%macro rapport;
proc report data=sashelp.class;
col name age sex;
define name / style(column)=[cellwidth=1in];
define age / style(column)=[cellwidth=.5in];
define sex / style(column)=[cellwidth=.5in];
title "Using the CELLWIDTH= Style with PROC REPORT";
run;
%mend rapport;
%rapport;
%Macro Email_test(prenom,nom);
%global courriel Name Name2;
data _null_;
call symput ("Name",&Firstname.||" "||&Lastname.);
/*You can change the email extention @gmail.com for your email server name */
call symput ("email",&Firstname.||"."||&Lastname.||"@gmail.com");
call symput ("Name2","'"||&FirstName.||" "||&Lastname.||"'");
run;
options emailsys = SMTP;
options emailhost = confidential;
FILENAME mail EMAIL TO=("&email." )
SUBJECT="Test - Report for: &Name" CONTENT_TYPE="text/html";
ODS LISTING CLOSE;
ODS HTML BODY=mail;
%rapport;
ODS HTML CLOSE;
ODS LISTING;
%mend Email_Test;
%Email_Test('firstname','lastname');
Does anyone already saw this error message and how can we solve it.
regards,
Alain.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The members of the support team found that it was a problem related to our email server. Nothing to do with SAS.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Here's a test code ver2:
%macro report;
proc report data=sashelp.class;
col name age sex;
define name / style(column)=[cellwidth=1in];
define age / style(column)=[cellwidth=.5in];
define sex / style(column)=[cellwidth=.5in];
title "Using the CELLWIDTH= Style with PROC REPORT";
run;
%mend report;
%report;
%Macro Email_test(Firstname,Lastname);
%global email Name Name2;
data _null_;
call symput ("Name",&Firstname.||" "||&Lastname.);
/*You can change the email extention @gmail.com for your email server name */
call symput ("email",&Firstname.||"."||&Lastname.||"@gmail.com");
call symput ("Name2","'"||&FirstName.||" "||&Lastname.||"'");
run;
options emailsys = SMTP;
options emailhost = confidential;
FILENAME mail EMAIL TO=("&email." )
SUBJECT="Test - Report for: &Name" CONTENT_TYPE="text/html";
ODS LISTING CLOSE;
ODS HTML BODY=mail;
%report;
ODS HTML CLOSE;
ODS LISTING;
%mend Email_Test;
%Email_Test('firstname','lastname');
Does anyone already saw this error message and how can we solve it.
regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The members of the support team found that it was a problem related to our email server. Nothing to do with SAS.
Regards,