<?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: Reg:Sending Mail to Multiple users in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14333#M2262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your example, not all email addresses end with a semi-colon.&amp;nbsp; That could be the problem.&amp;nbsp; If they do all end with semi-colons, have your tried ending them with commas instead?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Dec 2011 13:35:33 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2011-12-14T13:35:33Z</dc:date>
    <item>
      <title>Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14330#M2259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hi i am having a macro variable to send the email SEmailid I will write the email in one table from that it will pick it if i write for 1 email it was working &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user@email.com"&gt;user@email.com&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp; then it was working if i want to send to 2-3 users it was not going i have tryed this ways &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="https://communities.sas.com/"&gt;%SEmailid=user1@gmail.com&lt;/A&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user2@gmail.com"&gt;user2@gmail.com&lt;/A&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user3@gmail.com"&gt;user3@gmail.com&lt;/A&gt;&lt;SPAN&gt;; %SEmailid=%str(&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user1@gmail.com"&gt;user1@gmail.com&lt;/A&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user2@gmail.com"&gt;user2@gmail.com&lt;/A&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user3@gmail.com"&gt;user3@gmail.com&lt;/A&gt;&lt;SPAN&gt;); %SEmailid="&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user1@gmail.com"&gt;user1@gmail.com&lt;/A&gt;&lt;SPAN&gt;" "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user2@gmail.com"&gt;user2@gmail.com&lt;/A&gt;&lt;SPAN&gt;" "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user3@gmail.com"&gt;user3@gmail.com&lt;/A&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="https://communities.sas.com/"&gt;%SEmailid='user1@gmail.com&lt;/A&gt;&lt;SPAN&gt;' &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:'user2@gmail.com"&gt;'user2@gmail.com&lt;/A&gt;&lt;SPAN&gt;' &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:'user3@gmail.com"&gt;'user3@gmail.com&lt;/A&gt;&lt;SPAN&gt;'. can any one help me it was resloving but i ma not getting email for one email i am getting if i am trying for 2-3 emial is it was getting problem&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 07:43:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14330#M2259</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-14T07:43:18Z</dc:date>
    </item>
    <item>
      <title>Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14331#M2260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your correct code when you can send only one E-mail addresss?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 07:50:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14331#M2260</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-12-14T07:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14332#M2261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;%MACRO email(sEmailid);&amp;nbsp; FILENAME mymail EMAIL "NULL"&amp;nbsp; TO="&amp;amp;sEmailid"&amp;nbsp; SUBJECT="&amp;amp;pSubject";&amp;nbsp; data _null_;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE mymail;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END; run; %MEND; I the table i will give the email in the table &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:user1@gmail.com"&gt;user1@gmail.com&lt;/A&gt;&lt;SPAN&gt; DATA _NULL_ ;&amp;nbsp; CALL SYMPUT("pEmailid","&amp;amp;EMAIL_ID"); run; I am using DI 4.2&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 07:56:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14332#M2261</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-14T07:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14333#M2262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your example, not all email addresses end with a semi-colon.&amp;nbsp; That could be the problem.&amp;nbsp; If they do all end with semi-colons, have your tried ending them with commas instead?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 13:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14333#M2262</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-12-14T13:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14334#M2263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried semi colon(;) and comma(,) also....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 14:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14334#M2263</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-14T14:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14335#M2264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand your code.&amp;nbsp; Is that what you actually submit?&amp;nbsp; You appear to create a macro, but don't call it and, rather, use call symput to create a macro variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post two sets of code.&amp;nbsp; First, an entire set that will successfully produce a single email and then another full set that fails with multiple emails?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 14:37:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14335#M2264</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-12-14T14:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14336#M2265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;Two Possible ways that you can have a look at... Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data a;&lt;BR /&gt;input mailid : $50. subject : $10.;&lt;BR /&gt;cards;&lt;BR /&gt;&lt;A href="mailto:id1@mail.com"&gt;id1@mail.com&lt;/A&gt; test1&lt;BR /&gt;&lt;A href="mailto:id2@mail.com"&gt;id2@mail.com&lt;/A&gt; test2&lt;BR /&gt;&lt;A href="mailto:id3@mail.com"&gt;id3@mail.com&lt;/A&gt; test3&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;*solution 1;&lt;BR /&gt;filename message email from = "&lt;A href="mailto:mainid@mail.com"&gt;mainid@mail.com&lt;/A&gt;";&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;file message;&lt;BR /&gt;set a;&lt;BR /&gt;put '!EM_TO!' mailid;&lt;BR /&gt;put '!EM_SUBJECT!' subject;&lt;BR /&gt;put "This is just a test";&lt;BR /&gt;put '!EM_SEND!';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;put '!EM_NEWMSG!';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;put '!EM_ABORT!';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;*Solution 2;&lt;BR /&gt;%MACRO email(pEmailid,psubject);&lt;BR /&gt;FILENAME mymail EMAIL&lt;BR /&gt;TO="&amp;amp;&amp;amp;pEmailid"&amp;nbsp; &lt;BR /&gt;SUBJECT="&amp;amp;&amp;amp;pSubject"&lt;BR /&gt;from="&lt;A href="mailto:mainid@mail.com"&gt;mainid@mail.com&lt;/A&gt;" ct='text/html';&lt;BR /&gt;data _null_; &lt;BR /&gt;FILE mymail;&amp;nbsp; &lt;BR /&gt;run;&lt;BR /&gt;%MEND;&lt;BR /&gt;DATA _NULL_ ;&lt;BR /&gt;set a;&lt;BR /&gt;call execute('%email('||mailid||' ,'||subject||')');&lt;BR /&gt;run; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 14:59:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14336#M2265</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-12-14T14:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14337#M2266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%MACRO email(SEmailid);&amp;nbsp;&amp;nbsp; FILENAME mymail EMAIL "NULL"&amp;nbsp;&amp;nbsp; TO="&amp;amp;SEmailid"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data _null_;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE mymail;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END; run; %MEND; OPTIONS MLOGIC MPRINT SYMBOLGEN; data _null_; set MailDset; call symput("V_EMAIL_ID",trim(EMAIL_ID)); run; DATA _NULL_ ;&amp;nbsp;&amp;nbsp; CALL SYMPUT("SEmailid","&amp;amp;V_EMAIL_ID");&amp;nbsp;&amp;nbsp; RUN; %email(&amp;amp;SEmailid); We are having a Dataset mailDest in that we have a variable called Email_ID there now we have only one email id now we want to insert 2-3 email ids we have tryed by keeping semicolon,comma(,),space and in code but i am getting error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 06:24:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14337#M2266</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-15T06:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14338#M2267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Is your objective to send the same mail to all the Ids in your data set ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then something that works for me is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select distinct quote(strip(email_id)) into : semailid separated by " "&lt;/P&gt;&lt;P&gt;from maildest;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%MACRO email(SEmailid); &lt;/P&gt;&lt;P&gt;&amp;nbsp; FILENAME mymail EMAIL &lt;/P&gt;&lt;P&gt;/*"NULL" */&lt;/P&gt;&lt;P&gt;&amp;nbsp; TO=&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&amp;amp;SEmailid&lt;/P&gt;&lt;P&gt;)&lt;BR /&gt;from="&lt;A href="mailto:myid@mail.com"&gt;myid@mail.com&lt;/A&gt;";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; data _null_; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE mymail; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; /*&amp;nbsp;&amp;nbsp;&amp;nbsp; END; */&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;%MEND; &lt;/P&gt;&lt;P&gt;%email(&amp;amp;semailid);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 14:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14338#M2267</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-12-15T14:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14339#M2268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But i want to add the Email in the Table only as this is server for the above i should change it in many things actually in the previously i have added in the table only ,now also i wnat to add in the table only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 06:55:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14339#M2268</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-16T06:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14340#M2269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;BR /&gt; Please forgive me maybe i am unable to understand your problem... &lt;/P&gt;&lt;P&gt;Is it that you have a single cell in your table that will have all the emailids.....?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data maildset;&lt;BR /&gt;email_id = " &lt;A href="mailto:'id@mail.com'"&gt;'id@mail.com'&lt;/A&gt; &lt;A href="mailto:'id2@mail.com'"&gt;'id2@mail.com'&lt;/A&gt; &lt;A href="mailto:'id3@mail.com'"&gt;'id3@mail.com'&lt;/A&gt; ";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;set MailDset;&lt;BR /&gt;call symput("SEmailid",trim(eMAIL_ID));&lt;BR /&gt;run;&lt;BR /&gt;%put &amp;amp;v_email_id;&lt;/P&gt;&lt;P&gt;%MACRO email(SEmailid); &lt;BR /&gt;&amp;nbsp; FILENAME mymail EMAIL &lt;/P&gt;&lt;P&gt;/*"NULL" */&lt;BR /&gt;&amp;nbsp; TO=&lt;BR /&gt;(&lt;BR /&gt;&amp;amp;SEmailid&lt;BR /&gt;);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; data _null_; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE mymail; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; /*&amp;nbsp; END; */&lt;BR /&gt;run; &lt;BR /&gt;%MEND; &lt;BR /&gt;%email(&amp;amp;SEmailid);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this does not help then probably you should post your log with the Mprint and Symbolgen so that the experts can look at it provide a solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 10:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14340#M2269</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-12-16T10:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14341#M2270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i have tryed startingly only. Actually i am having a table in that email variable is there now i want to add the new variables in to that cell only i have tryed by semicolon(;),comma(,) ,space like that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 11:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14341#M2270</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2011-12-16T11:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Sending Mail to Multiple users</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14342#M2271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be space with quotes. Please look at the sample that i have provided&lt;/P&gt;&lt;P&gt;data maildset;&lt;BR /&gt;email_id = " &lt;A class="jive-link-email-small" href="mailto:'id@mail.com'"&gt;'id@mail.com'&lt;/A&gt; &lt;A class="jive-link-email-small" href="mailto:'id2@mail.com'"&gt;'id2@mail.com'&lt;/A&gt; &lt;A class="jive-link-email-small" href="mailto:'id3@mail.com'"&gt;'id3@mail.com'&lt;/A&gt; ";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;However there seems to be a problem in the macro&amp;nbsp; Email that you have defined. &lt;/P&gt;&lt;P&gt;You need to change the TO =&amp;nbsp; your &amp;amp;semailid should be in brackets and not quote. Please check the sample provided above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 11:46:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reg-Sending-Mail-to-Multiple-users/m-p/14342#M2271</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-12-16T11:46:33Z</dc:date>
    </item>
  </channel>
</rss>

