BookmarkSubscribeRSS Feed
pawan
Obsidian | Level 7

Need some help to resolve the issue with the length of email ID list.

I use a datastep to mail my customers. Unfortunately, the list is huge. I use a bit of list in the !EM_TO! and most of the mail ID list in the !EM_CC!. Here, the issue is that !EM_CC! is truncated to some default length and so couldnt deliver mail to the rest of the list.

I tried using LRECL= option(in the FILENAME statement) to increase the record length, which didnt work for me. I doubt if this option is specific to the external files only.

Any ideas to resolve or alternative suggestions would be highly appreciated.

9 REPLIES 9
Hima
Obsidian | Level 7

Check this link out. It has some info related to this topic.

http://support.sas.com/techsup/technote/ts605.html

Hima
Obsidian | Level 7

Try creating a Distrubution List with all the email ID's. Usually bigger organizations have the capabilty to create DG list for emails. Paste the DG name in the code and it should work.

pawan
Obsidian | Level 7

Thanks Hima, This is what we are trying as of now. But I'm looking for a permanent solution, where we can increase the length of the string to accept all email IDs.. let me know if U've any ideas..

As we've around 100 jobs to run... itz very difficult for us to create so many DGs.. Hope U can understand..

Tom
Super User Tom
Super User

Can you give an estimate of the limit that you are hitting?

How many addresses are you talking about?  What is the total length of the addresses?

Does it work any differently when you use code generation to put the list into the CC= option instead of generating it with !EM directives?

art297
Opal | Level 21

Anyone know what the limitations are for the Address, CC and the various EM_ fields?  Interestingly, the documentation doesn't appear to mention anything about limitations.

pawan
Obsidian | Level 7

Sorry Tom, my addresses are not fixed... these will vary from report to report... I can say that, as I found, mails are not being generated for those IDs that are in the list after 256 characters... my list went on to 600 to 1080 characters for diff requirements..

I used a macro variable to put the list into the cc=, nothing more.. any help?!!

art297
Opal | Level 21

You could always read your emails, one by one, in a loop that executes your code inserting each address and sending the email before getting the next one.

Tom
Super User Tom
Super User

Runs some experiments to test the limits.

You do not have to place the code all on one line of the program.

For example you could create a file name with more that 300 email addresses using your text editor and try using it to send a test message.

http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002058232.htm

filename testmail email 'me@myhost' cc=

("id1@address1"

  "id2@address2"

....

);

That format is easy to generate with a data step from your database of addresses.

filename code temp;

data _null_;

    set cclist end=eof;

    file code;

   if _n_=1 then put 'filename testmail email '  email $quote. 'cc=' ;

    else put ' ' email $quote. ;

    if eof then put ');';

run;

You might also try sending an email with your normal email tool and see if the limit is in your mail server instead.

JonS_
Calcite | Level 5

Here is an idea, I hope it helps.

In this example I will import an excel file that has the email addresses to tblEmail and then email all the addresses in tblEmail I will assume that the column name for the email address is Email. I dont have SAS at home so I cant test this.

/* if you have a table with the email addresses then you dont need this */

PROC IMPORT

OUT = WORK.IMPORT      /* CREATE THE TABLE TO IMPORT THE DATA INTO */

DATAFILE = "C:\DATA.XLS"     /* EXCEL FILE TO IMPORT */

REPLACE; /* REPLACE THE TABLE IF IT IS ALREADY THERE /*

SHEET = "SHEET1"; /* THE NAME OF THE SHEET TO IMPORT */

GETNAMES=YES; /* COLUMN HEADERS */

RUN;

/* let send out the email to everyone */

FILENAME OUTBOX EMAIL;

DATA _NULL_;

SET WORK.IMPORT END =EOF;

FILE OUTBOX

FROM = "YOU@YOU.COM"

SUBJECT = "HOPE THIS WORKS!"

TYPE = "TEXT/HTML";

PUT '!EM_TO!' EMAIL;

PUT "Hello!";

PUT "<br><br>";

PUT "I hope this works out for you.";

PUT '!EM_SEND!' / '!EM_NEWMSG!';

IF EOF THEN PUT '!EM_ABORT!';

RUN;

RUN;

This should send an email to each person seperatly until it reaches the end of the table.

If your getting the pop-up that asks your permission to send a email with outlook you need to adjust your SASV9.CFG file for SMTP instead of outlook:

Right above the area in the file that says something like:

/*--------------------------------------------------------------------------------\

| Warning: Install Application edits below this line. User  |

|               options should be added above ths comment |

|               box.....

This is what you want to add:

/* Note: Sets up email to use SMTP */

-emailsys SMTP

-emailhost EXCHANGEHOST.WHATEVER.WHATEVER.COM /* put your exchange server info here */

-emailport 25 /* 25 works for me, might have to check with your admin */

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 9 replies
  • 1072 views
  • 6 likes
  • 5 in conversation