BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

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.

1 ACCEPTED SOLUTION

Accepted Solutions
alepage
Barite | Level 11

The members of the support team found that it was a problem related to our email server.  Nothing to do with SAS.

Regards,

View solution in original post

2 REPLIES 2
alepage
Barite | Level 11

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,

alepage
Barite | Level 11

The members of the support team found that it was a problem related to our email server.  Nothing to do with SAS.

Regards,

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2104 views
  • 0 likes
  • 1 in conversation