<?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: SAS Email Functionality Outlook in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503155#M134404</link>
    <description>&lt;P&gt;I was actually trying to avoid opening a SAS Tech support ticket.&amp;nbsp; I came across this track and figured you could help.&amp;nbsp; I will open ticket to figure out what config file I need to make the change.&amp;nbsp; Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Oct 2018 16:31:35 GMT</pubDate>
    <dc:creator>jasonfor</dc:creator>
    <dc:date>2018-10-10T16:31:35Z</dc:date>
    <item>
      <title>SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436319#M108518</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have an Outlook account where I have access to 2 email accounts, my personal account and a business account. I am using the code below to try and send from the business account, but no matter what the email always comes from my personal account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a setting or something I am missing?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this code below, the inventory_planning emailid is the business account, and mperva is my personal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OPTIONS EMAILSYS=MAPI EMAILID = 'inventory_planning';&lt;BR /&gt;FILENAME MAILBOX EMAIL;&lt;/P&gt;&lt;P&gt;DATA _NULL_;&lt;BR /&gt;FILE MAILBOX TO= 'mperva@xxx.com'&lt;BR /&gt;SUBJECT = 'TEST';&lt;BR /&gt;PUT 'HI,';&lt;BR /&gt;PUT 'HOW ARE YOU TODAY?';&lt;BR /&gt;PUT 'HERE IS YOUR FILE';&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 18:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436319#M108518</guid>
      <dc:creator>pervamatt</dc:creator>
      <dc:date>2018-02-12T18:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436451#M108522</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Filename outbox clear;&lt;BR /&gt;filename outbox email FROM="abc@xyz.com" ;&lt;BR /&gt;data _null_;&lt;BR /&gt;file outbox&lt;BR /&gt;to=("xyz@abc.com")&lt;BR /&gt;subject ="Hello";&lt;BR /&gt;PUT "Thanks";&lt;BR /&gt;PUT "Kiran";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;Filename outbox clear;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 21:06:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436451#M108522</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-02-12T21:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436459#M108527</link>
      <description>&lt;P&gt;No luck. It still came from the personal account.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 21:28:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436459#M108527</guid>
      <dc:creator>pervamatt</dc:creator>
      <dc:date>2018-02-12T21:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436467#M108532</link>
      <description>&lt;P&gt;Check your email host by running the below code. Probably you need to change that to your work host.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc options group=email;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 21:43:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436467#M108532</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-02-12T21:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436472#M108536</link>
      <description>&lt;P&gt;Here's the result, not sure how to interpret:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;12 proc options group=email;&lt;BR /&gt;13 run;&lt;/P&gt;&lt;P&gt;SAS (r) Proprietary Software Release 9.4 TS1M4&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Group=EMAIL&lt;BR /&gt;EMAILACKWAIT=30 Specifies the number of seconds to wait for the SMTP server acknowledgement.&lt;BR /&gt;EMAILAUTHPROTOCOL=NONE&lt;BR /&gt;Specifies the SMTP e-mail authentication protocol.&lt;BR /&gt;NOEMAILFROM Does not require the FROM e-mail option when sending e-mail by using the FILE or&lt;BR /&gt;FILENAME statements.&lt;BR /&gt;EMAILHOST=LOCALHOST&lt;BR /&gt;Specifies one or more domain names for SMTP e-mail servers.&lt;BR /&gt;EMAILID= Specifies the SAS user's logon ID, profile or e-mail address.&lt;BR /&gt;EMAILPORT=25 Specifies the port number for the SMTP e-mail server that is specified in the&lt;BR /&gt;EMAILHOST option.&lt;BR /&gt;EMAILPW=XXXXXXXX Specifies the password for the e-mail address specified by the EMAILID option.&lt;BR /&gt;EMAILUTCOFFSET= For SMTP e-mail sent using the FILENAME statement, specifies a UTC offset that is&lt;BR /&gt;used in the Date header field of the e-mail message.&lt;BR /&gt;EMAILDLG=NATIVE Specifies whether to use the native e-mail dialog box that is provided by your&lt;BR /&gt;e-mail application or the e-mail dialog box that is provided by SAS.&lt;BR /&gt;EMAILSYS=MAPI Specifies the e-mail protocol to use for sending electronic mail.&lt;BR /&gt;NOTE: PROCEDURE OPTIONS used (Total process time):&lt;BR /&gt;real time 0.15 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 21:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436472#M108536</guid>
      <dc:creator>pervamatt</dc:creator>
      <dc:date>2018-02-12T21:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436477#M108538</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Change your host to business site.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;options emailsys=smtp emailhost=your.smtpemail.server.com emailport=25;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;emailhost is SMTP server specific to your site. Check with your email admin to get the correct SMTP email server name and port 25 is common but check with admin to verify.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 22:00:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436477#M108538</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-02-12T22:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436479#M108539</link>
      <description>&lt;P&gt;OK. Let me reach out them and see if I can get the server name.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 22:03:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/436479#M108539</guid>
      <dc:creator>pervamatt</dc:creator>
      <dc:date>2018-02-12T22:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503135#M134398</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;Suryakiran,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you know how I can permanently change my EMAILACKWAIT&amp;nbsp;system&amp;nbsp;option?&amp;nbsp; By default it is set to 30 seconds but I&amp;nbsp;believe I might need more time.&amp;nbsp; I am currently receiving an error that the email was able to send due to the connection to my mail server being interrupted.&amp;nbsp; Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 15:32:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503135#M134398</guid>
      <dc:creator>jasonfor</dc:creator>
      <dc:date>2018-10-10T15:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503139#M134399</link>
      <description>&lt;P&gt;Check SAS Documentation on this &lt;A href="https://documentation.sas.com/?docsetId=lesysoptsref&amp;amp;docsetTarget=n1s3ofo2vn63bln10wnrh4stkty2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 15:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503139#M134399</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-10T15:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503150#M134401</link>
      <description>&lt;P&gt;I actually came across this documentation but this looks like I would have to use this in code.&amp;nbsp; Is there any way to make this at a higher level?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 16:22:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503150#M134401</guid>
      <dc:creator>jasonfor</dc:creator>
      <dc:date>2018-10-10T16:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503152#M134402</link>
      <description>&lt;P&gt;Look for that in your configuration file and update there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; If this is a new issue, why don't you open a new track. You may get responses from other out there or avoids miss leading the actual post for future reference.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 16:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503152#M134402</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-10T16:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Email Functionality Outlook</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503155#M134404</link>
      <description>&lt;P&gt;I was actually trying to avoid opening a SAS Tech support ticket.&amp;nbsp; I came across this track and figured you could help.&amp;nbsp; I will open ticket to figure out what config file I need to make the change.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 16:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Email-Functionality-Outlook/m-p/503155#M134404</guid>
      <dc:creator>jasonfor</dc:creator>
      <dc:date>2018-10-10T16:31:35Z</dc:date>
    </item>
  </channel>
</rss>

