<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Sending emails from SAS. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169304#M12985</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my bad; did some C lately, where one calls a function like a procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;call sleep(2);&lt;/P&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;P&gt;sleep(2);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Nov 2014 07:38:16 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2014-11-14T07:38:16Z</dc:date>
    <item>
      <title>Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169299#M12980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to send emails from SAS by fetching the data from a data set. I have the mail ids around 5000. Hence I am getting &lt;SPAN style="color: #ff0000;"&gt;"&lt;STRONG&gt;WARNING: Email service not available&lt;/STRONG&gt;". &lt;/SPAN&gt;Hence I would like to send the first 200 mails first and hold the process for few seconds and start the process to send 201 to 400 and hold the process for the same few seconds and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My data set looks as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="151" style="border: 1px solid #000000; width: 244px; height: 151px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;userid&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;mailid&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:abc@some.com"&gt;abc@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;101&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:def@some.com"&gt;def@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;102&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:ghi@some.com"&gt;ghi@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;103&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:jkl@some.com"&gt;jkl@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;104&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:mno@some.com"&gt;mno@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;105&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;A href="mailto:pqr@some.com"&gt;pqr@some.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All these are unique mail ids.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to SAS and I wrote the code as below..but I am getting &lt;SPAN style="color: #ff0000;"&gt;"&lt;STRONG&gt;WARNING: Email service not available&lt;/STRONG&gt;" &lt;/SPAN&gt;becuase of SMTP server timeout or heavy load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro email;&lt;/P&gt;&lt;P&gt;FILENAME file_mail EMAIL LRECL=3200 TYPE='text/html';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA _NULL_;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET emails END=EOF;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BY mailid userid;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE file_mail;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '!EM_TO!' mailid;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '!EM_SUBJECT!' 'Test Plans have been created.';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put 'The following test plans have been created with you as a tester.';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '&amp;lt;br&amp;gt;';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; link = '&amp;lt;a href="' ||left(strip(userid)) || '"&amp;gt;' ||'&amp;lt;/a&amp;gt;'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '!EM_SEND!';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '!EM_NEWMSG!';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if EOF then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '!EM_ABORT!';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RUN;&lt;/P&gt;&lt;P&gt;%mend;&lt;BR /&gt;%email;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 10:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169299#M12980</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-13T10:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169300#M12981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do this in the data step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;retain counter 0;&lt;/P&gt;&lt;P&gt;counter + 1;&lt;/P&gt;&lt;P&gt;if counter = 200 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp; counter = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; sleep(2);&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169300#M12981</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-13T12:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169301#M12982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can skip the counter and use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if mod(_n_,200) = 0 then sleep(2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169301#M12982</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2014-11-13T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169302#M12983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course, but calling the mod() function with every iteration may unnecessarily eat CPU cycles. Blame it on the old-school programmer in me &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:40:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169302#M12983</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-13T12:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169303#M12984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its throwing an error after including the above either of the above two codes in DATA STEO, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"ERROR: Undeclared array referenced: sleep."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please write the entire code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 06:04:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169303#M12984</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T06:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169304#M12985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my bad; did some C lately, where one calls a function like a procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;call sleep(2);&lt;/P&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;P&gt;sleep(2);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 07:38:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169304#M12985</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-14T07:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169305#M12986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="8872" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : Thanks for the information provided.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you are right ,I am able to send mail a maximum of 499 after that I am getting that ERROR message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169305#M12986</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T08:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169306#M12987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="828210" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : Yeh now its not throwing error. But still I am unable to send the mails after 499 records eventhough I included the call sleep in the data step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:19:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169306#M12987</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T08:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169307#M12988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That number of 499 is weird a human setting to be expected at the server side. Is it possible?&lt;/P&gt;&lt;P&gt;- &lt;A class="active_link" href="https://itservices.stanford.edu/service/emailcalendar/email/spam/limit"&gt;https://itservices.stanford.edu/service/emailcalendar/email/spam/limit&lt;/A&gt;&amp;nbsp; (zimbra)&lt;/P&gt;&lt;P&gt;- &lt;A href="http://technet.microsoft.com/en-us/library/exchange-online-protection-limits.aspx" title="http://technet.microsoft.com/en-us/library/exchange-online-protection-limits.aspx"&gt;Exchange Online Protection Limits | Exchange Online Protection Service Description&lt;/A&gt; (number of outbound message send)&lt;/P&gt;&lt;P&gt;The error message should probably not some unexplainable error but one telling a limit like this has been reached &lt;/P&gt;&lt;P&gt;Can you validate this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:27:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169307#M12988</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-14T08:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169308#M12989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then it is not a load problem, you most probably are not allowed to send &amp;gt;= 500 emails in one action.&lt;/P&gt;&lt;P&gt;So I'd suggest to split the data set into chunks &amp;lt; 500 and iterate through these with a macro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:33:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169308#M12989</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-14T08:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169309#M12990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="828210" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : Yes you are right. But its related to production.Hence the data will increase gradually and the number of tables also will be increase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 10:08:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169309#M12990</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T10:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169310#M12991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you need to write the macro in a way to be flexible, so it does do your work for you in the future.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 10:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169310#M12991</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-14T10:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169311#M12992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not talk to the mail-server administrator, he had control on that number of mails.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 10:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169311#M12992</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-14T10:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169312#M12993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="828210" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : Yes we need to right the macro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 11:14:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169312#M12993</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T11:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169313#M12994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="8872" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : I am not aware like whether the mail-server admin can have the control over the number of mails to be trigger. I need to investigate on this more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 11:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169313#M12994</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T11:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sending emails from SAS.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169314#M12995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="828210" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;;;;&lt;A __default_attr="8872" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;-------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine now..Just I increased the sleep time to 120 sec. Below is the findal code for that fix&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if mod(_n_,200) = 0 then sleep(120);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot to both of you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hari Prasad K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 12:45:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Sending-emails-from-SAS/m-p/169314#M12995</guid>
      <dc:creator>K_HARI__PRASAD</dc:creator>
      <dc:date>2014-11-14T12:45:01Z</dc:date>
    </item>
  </channel>
</rss>

