<?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 with Amazon Simple Email Service (SES) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/698607#M37533</link>
    <description>&lt;P&gt;I have referred this document -&amp;nbsp;&lt;A href="https://support.sas.com/kb/53/215.html" target="_blank"&gt;https://support.sas.com/kb/53/215.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After applying this sample I can able to send email via AWS Simple Email Service (SES).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Sample Code:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;options emailsys=smtp;&lt;BR /&gt;options emailhost=("email-smtp.amazonaws.com" STARTTLS auth=LOGIN id="SES-SMTP-USER_NAME" pw="SES-SMTP-PASSWORD" port=25);&lt;/P&gt;&lt;P&gt;filename outbox email from="email-congifured-in-ses@domain.com" ;&lt;BR /&gt;data _null_;&lt;BR /&gt;file outbox&lt;BR /&gt;to=("to@domain.com")&lt;BR /&gt;subject="My SAS Output"&lt;BR /&gt;;&lt;BR /&gt;put 'It worked great!';&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2020 09:07:04 GMT</pubDate>
    <dc:creator>vivinkumar</dc:creator>
    <dc:date>2020-11-13T09:07:04Z</dc:date>
    <item>
      <title>SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697616#M37476</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to configure Amazon Simple Email Service (SES)&amp;nbsp; with SAS 9.4 to send email notifications and reports from SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have configured AWS SES but trying to find any sample code or SAS connect to configure in SAS.&lt;/P&gt;&lt;P&gt;Tried the following code but I am getting only the authentication error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*sample code*/&lt;BR /&gt;options emailsys=smtp;&lt;BR /&gt;options emailport=25;&lt;BR /&gt;options emailhost="email-smtp.amazon.com";&lt;BR /&gt;options emailid="test@domain.com";&lt;BR /&gt;options emailpw="******";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FILENAME Mailbox EMAIL 'test@domain.com'&lt;BR /&gt;Subject='Test Mail message';&lt;BR /&gt;DATA _NULL_;&lt;BR /&gt;FILE Mailbox;&lt;BR /&gt;PUT "Hello";&lt;BR /&gt;PUT "This is a Test email";&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Email: 530 Authentication required&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 13:57:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697616#M37476</guid>
      <dc:creator>vivinkumar</dc:creator>
      <dc:date>2020-11-09T13:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697800#M37478</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/284067"&gt;@vivinkumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check this KB link on&amp;nbsp;&lt;A href="https://support.sas.com/kb/18/363.html" target="_self"&gt;Troubleshooting guidelines for successfully sending an SMTP e-mail from SAS® software&lt;/A&gt;&amp;nbsp;. It is to check if SMTP email is working successfully outside of SAS first.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 05:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697800#M37478</guid>
      <dc:creator>AnandVyas</dc:creator>
      <dc:date>2020-11-10T05:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697823#M37479</link>
      <description>Thanks Anand.&lt;BR /&gt;When I try the telnet command I am getting the following response. Do I need to setup additional configuration for SMTP?&lt;BR /&gt;&lt;BR /&gt;220 email-smtp.amazonaws.com ESMTP SimpleEmailService-****** ###########&lt;BR /&gt;451 4.4.2 Timeout waiting for data from client.&lt;BR /&gt;&lt;BR /&gt;Connection to host lost.</description>
      <pubDate>Tue, 10 Nov 2020 08:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697823#M37479</guid>
      <dc:creator>vivinkumar</dc:creator>
      <dc:date>2020-11-10T08:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697824#M37480</link>
      <description>&lt;P&gt;I am not sure if any config is required for SMTP, but here is a guide from AWS on troubleshooting timeout issues.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://aws.amazon.com/premiumsupport/knowledge-center/smtp-connectivity-timeout-issues-ses/" target="_blank"&gt;https://aws.amazon.com/premiumsupport/knowledge-center/smtp-connectivity-timeout-issues-ses/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 08:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697824#M37480</guid>
      <dc:creator>AnandVyas</dc:creator>
      <dc:date>2020-11-10T08:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697940#M37488</link>
      <description>Thanks Anand.&lt;BR /&gt;I have retested the telnet command with additional parameters and I am getting the following authentication error.&lt;BR /&gt;&lt;BR /&gt;220 email-smtp.amazonaws.com ESMTP SimpleEmailService-d-****** #######&lt;BR /&gt;helo domain.com&lt;BR /&gt;250 email-smtp.amazonaws.com&lt;BR /&gt;mail from: mail@domain.com&lt;BR /&gt;530 Authentication required&lt;BR /&gt;&lt;BR /&gt;Still I am not clear what authentication and how to provide it.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Vivin</description>
      <pubDate>Tue, 10 Nov 2020 17:41:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/697940#M37488</guid>
      <dc:creator>vivinkumar</dc:creator>
      <dc:date>2020-11-10T17:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS with Amazon Simple Email Service (SES)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/698607#M37533</link>
      <description>&lt;P&gt;I have referred this document -&amp;nbsp;&lt;A href="https://support.sas.com/kb/53/215.html" target="_blank"&gt;https://support.sas.com/kb/53/215.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After applying this sample I can able to send email via AWS Simple Email Service (SES).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Sample Code:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;options emailsys=smtp;&lt;BR /&gt;options emailhost=("email-smtp.amazonaws.com" STARTTLS auth=LOGIN id="SES-SMTP-USER_NAME" pw="SES-SMTP-PASSWORD" port=25);&lt;/P&gt;&lt;P&gt;filename outbox email from="email-congifured-in-ses@domain.com" ;&lt;BR /&gt;data _null_;&lt;BR /&gt;file outbox&lt;BR /&gt;to=("to@domain.com")&lt;BR /&gt;subject="My SAS Output"&lt;BR /&gt;;&lt;BR /&gt;put 'It worked great!';&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 09:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-with-Amazon-Simple-Email-Service-SES/m-p/698607#M37533</guid>
      <dc:creator>vivinkumar</dc:creator>
      <dc:date>2020-11-13T09:07:04Z</dc:date>
    </item>
  </channel>
</rss>

