<?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 Regarding Emails in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536979#M6706</link>
    <description>I need to send emails like&lt;BR /&gt;sai@gmail.com kiran@gmail.com&lt;BR /&gt;&lt;BR /&gt;%mac(no=001)&lt;BR /&gt;%mac(no=002)&lt;BR /&gt;&lt;BR /&gt;The parameter which was passed 001 the email should go to sai@gmail.com&lt;BR /&gt;&lt;BR /&gt;The parameter which was passed 002 the email should go to kiran@gmail.com&lt;BR /&gt;&lt;BR /&gt;How to code?&lt;BR /&gt;</description>
    <pubDate>Wed, 20 Feb 2019 06:56:27 GMT</pubDate>
    <dc:creator>saikiran_nemani</dc:creator>
    <dc:date>2019-02-20T06:56:27Z</dc:date>
    <item>
      <title>Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536979#M6706</link>
      <description>I need to send emails like&lt;BR /&gt;sai@gmail.com kiran@gmail.com&lt;BR /&gt;&lt;BR /&gt;%mac(no=001)&lt;BR /&gt;%mac(no=002)&lt;BR /&gt;&lt;BR /&gt;The parameter which was passed 001 the email should go to sai@gmail.com&lt;BR /&gt;&lt;BR /&gt;The parameter which was passed 002 the email should go to kiran@gmail.com&lt;BR /&gt;&lt;BR /&gt;How to code?&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Feb 2019 06:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536979#M6706</guid>
      <dc:creator>saikiran_nemani</dc:creator>
      <dc:date>2019-02-20T06:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536983#M6708</link>
      <description>&lt;P&gt;You can build a custom format that maps the index values to email adresses. Build that format from a dataset that contains both.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 07:17:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536983#M6708</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-20T07:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536985#M6709</link>
      <description>Can you explain</description>
      <pubDate>Wed, 20 Feb 2019 07:18:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536985#M6709</guid>
      <dc:creator>saikiran_nemani</dc:creator>
      <dc:date>2019-02-20T07:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536987#M6710</link>
      <description>&lt;P&gt;Read the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=n1e19y6lrektafn1kj6nbvhus59w.htm&amp;amp;locale=de#n1e19y6lrektafn1kj6nbvhus59w" target="_self"&gt;documentation&lt;/A&gt;!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 07:31:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536987#M6710</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-20T07:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536994#M6713</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/124432"&gt;@saikiran_nemani&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Can you explain&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;To show you where such a format would be implemented, you need to show us your macro code.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 08:41:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/536994#M6713</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-20T08:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Emails</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/537609#M6794</link>
      <description>&lt;P&gt;Please let us know if it worked for you&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data emails;
input emails:$200.;
id=_n_;  /*This is one way of Iding, there are several other ways*/
cards;
sai@gmail.com
kiran@gmail.com
;
run;

%macro mac(no=);
	data _null_;
	set emails;
	where id=&amp;amp;no;
	call symput('email',emails);
	stop;
	run;
	
	%put &amp;amp;=email;
	
	/****Add Email Sending Code Here****/
%mend mac;

%mac(no=1);
%mac(no=2);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 07:18:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Regarding-Emails/m-p/537609#M6794</guid>
      <dc:creator>Satish_Parida</dc:creator>
      <dc:date>2019-02-22T07:18:15Z</dc:date>
    </item>
  </channel>
</rss>

