<?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: How to send mail to more than 50 users at a time? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128400#M294560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A simple way (and better from a management point of view) is to create a mailing list at the mail server, and refer to that instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Sep 2013 11:54:55 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2013-09-04T11:54:55Z</dc:date>
    <item>
      <title>How to send mail to more than 50 users at a time?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128399#M294559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to send a mail with 50 mail-ids in "To" and 50 mail-id's in "Cc".&amp;nbsp; But I am getting an error which says the length of mails-id's are more than 256 characters.&lt;/P&gt;&lt;P&gt;Is there a way to resolve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 06:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128399#M294559</guid>
      <dc:creator>vjpkr</dc:creator>
      <dc:date>2013-09-04T06:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to send mail to more than 50 users at a time?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128400#M294560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A simple way (and better from a management point of view) is to create a mailing list at the mail server, and refer to that instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 11:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128400#M294560</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-09-04T11:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to send mail to more than 50 users at a time?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128401#M294561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only way I have over come this is to put the email in a macro and send to the list one at a time. I believe I had to put some wait time in between the mailings so that mail servers did not mark them as spam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 12:05:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128401#M294561</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2013-09-04T12:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to send mail to more than 50 users at a time?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128402#M294562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A id="p19fmiur9hdhswn0z9ghrki675a2"&gt;&lt;/A&gt;PUT Statement E-Mail Directives&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lestmtsref/65040/HTML/default/viewer.htm#n0ig2krarrz6vtn1aw9zzvtez4qo.htm" title="http://support.sas.com/documentation/cdl/en/lestmtsref/65040/HTML/default/viewer.htm#n0ig2krarrz6vtn1aw9zzvtez4qo.htm"&gt;SAS(R) 9.4 Statements: Reference&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 12:16:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128402#M294562</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-09-04T12:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to send mail to more than 50 users at a time?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128403#M294563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. Can U pls explain the solution in detail?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 14:04:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-send-mail-to-more-than-50-users-at-a-time/m-p/128403#M294563</guid>
      <dc:creator>vjpkr</dc:creator>
      <dc:date>2013-09-04T14:04:15Z</dc:date>
    </item>
  </channel>
</rss>

