<?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: ERROR: Email: Permission is denied.  With Unexpired SAS in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/439155#M20472</link>
    <description>&lt;P&gt;Hi, I was receiving the exact same message. In my case, the problem was that I was using the wrong emailsys (smtp). I changed it to mapi and it solved the problem. Make sure you are using the correct email system. Hope this helps.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2018 02:47:32 GMT</pubDate>
    <dc:creator>ajvilar</dc:creator>
    <dc:date>2018-02-22T02:47:32Z</dc:date>
    <item>
      <title>ERROR: Email: Permission is denied.  With Unexpired SAS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/347152#M18296</link>
      <description>&lt;P&gt;Hi, I have a piece of code that used to send email to my boss regading some stats, now it stopped working due to 'Permission is denied'. I checked software status it will not expire till end of 2017. So could someone help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expiration: 30DEC2017.&lt;BR /&gt;Grace Period: 45 days (ending 13FEB2018).&lt;BR /&gt;Warning Period: 47 days (ending 01APR2018).&lt;BR /&gt;System birthday: 28MAR2017.&lt;BR /&gt;Operating System: WX64_WKS.&lt;BR /&gt;Product expiration dates:&lt;BR /&gt;---Base SAS Software&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/STAT&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/GRAPH&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/IML&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/Secure 168-bit&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/Secure Windows&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS Enterprise Guide&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/ACCESS Interface to PC Files&lt;BR /&gt;30JAN2017&lt;BR /&gt;---SAS/ACCESS Interface to ODBC&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS/IML Studio&lt;BR /&gt;30DEC2017&lt;BR /&gt;---SAS Workspace Server for Local Access&lt;BR /&gt;30DEC2017&lt;BR /&gt;---High Performance Suite&lt;BR /&gt;30DEC2017&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the piece of SAS code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options noxwait&lt;BR /&gt;EMAILSYS=SMTP&lt;BR /&gt;EMAILHOST='XXXXX'&lt;BR /&gt;EMAILPORT=25;run;&lt;BR /&gt;%let start_time=%sysfunc(putn(%sysfunc(datetime()),datetime22.));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%let emailsaserrors="XXXXXXXXXXXXXXXXX";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* E-mail tables in HTML format */&lt;BR /&gt;FILENAME output EMAIL&lt;BR /&gt;SUBJECT= " Completed for %sysfunc(date(),yymmdd10.)"&lt;BR /&gt;FROM= "XXXXXXX"&lt;BR /&gt;TO= (&amp;amp;emailsaserrors.) CT= "text/html" /* Required for HTML output */ ;&lt;BR /&gt;ODS HTML BODY=output STYLE=sasweb;&lt;BR /&gt;ods html text="&amp;lt;p align=center&amp;gt;&amp;lt;b&amp;gt;&amp;lt;h2&amp;gt;Process finished. Results are as below&amp;lt;/h2&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;br&amp;gt;&amp;lt;hr&amp;gt;";&lt;BR /&gt;TITLE JUSTIFY=left&lt;BR /&gt;"Summary";&lt;BR /&gt;proc print data=Overall noobs;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;ODS HTML CLOSE;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 19:07:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/347152#M18296</guid>
      <dc:creator>ciphercong</dc:creator>
      <dc:date>2017-04-04T19:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Email: Permission is denied.  With Unexpired SAS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/359809#M18643</link>
      <description>&lt;P&gt;I couldn't reproduce the error you were getting.&lt;/P&gt;
&lt;P&gt;As long as I use a valid FROM and TO email address, your code worked on my system (after creating a dataset named "overall").&lt;/P&gt;
&lt;P&gt;Maybe you can rerun and show the log section with the error (delete any email addresses)?&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 20:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/359809#M18643</guid>
      <dc:creator>JasonDiVirgilio</dc:creator>
      <dc:date>2017-05-18T20:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Email: Permission is denied.  With Unexpired SAS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/439155#M20472</link>
      <description>&lt;P&gt;Hi, I was receiving the exact same message. In my case, the problem was that I was using the wrong emailsys (smtp). I changed it to mapi and it solved the problem. Make sure you are using the correct email system. Hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 02:47:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-Email-Permission-is-denied-With-Unexpired-SAS/m-p/439155#M20472</guid>
      <dc:creator>ajvilar</dc:creator>
      <dc:date>2018-02-22T02:47:32Z</dc:date>
    </item>
  </channel>
</rss>

