<?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: getting this ERROR: E-mail : 452 4.3.1 Insufficient system resources while using FILENAME mail E in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458984#M29567</link>
    <description>&lt;P&gt;The members of the support team found that it was a problem related to our email server.&amp;nbsp; Nothing to do with SAS.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
    <pubDate>Tue, 01 May 2018 14:50:26 GMT</pubDate>
    <dc:creator>alepage</dc:creator>
    <dc:date>2018-05-01T14:50:26Z</dc:date>
    <item>
      <title>getting this ERROR: E-mail : 452 4.3.1 Insufficient system resources while using FILENAME mail EMAIL</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458678#M29539</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to send a report by email but I receive the following error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: E-mail : 452 4.3.1 Insufficient system resources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's a test code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro rapport;&lt;BR /&gt;proc report data=sashelp.class;&lt;BR /&gt;col name age sex;&lt;BR /&gt;define name / style(column)=[cellwidth=1in];&lt;BR /&gt;define age / style(column)=[cellwidth=.5in];&lt;BR /&gt;define sex / style(column)=[cellwidth=.5in];&lt;BR /&gt;title "Using the CELLWIDTH= Style with PROC REPORT";&lt;BR /&gt;run;&lt;BR /&gt;%mend rapport;&lt;BR /&gt;%rapport;&lt;/P&gt;&lt;P&gt;%Macro Email_test(prenom,nom);&lt;BR /&gt;%global courriel Name Name2;&lt;BR /&gt;data _null_;&lt;BR /&gt;call symput ("Name",&amp;amp;Firstname.||" "||&amp;amp;Lastname.);&lt;/P&gt;&lt;P&gt;/*You can change the email extention&amp;nbsp;@gmail.com for your email server name */&lt;BR /&gt;call symput ("email",&amp;amp;Firstname.||"."||&amp;amp;Lastname.||"@gmail.com");&lt;BR /&gt;call symput ("Name2","'"||&amp;amp;FirstName.||" "||&amp;amp;Lastname.||"'");&lt;BR /&gt;run;&lt;BR /&gt;options emailsys = SMTP;&lt;BR /&gt;options emailhost = confidential;&lt;BR /&gt;FILENAME mail EMAIL TO=("&amp;amp;email." )&lt;BR /&gt;SUBJECT="Test - Report for: &amp;amp;Name" CONTENT_TYPE="text/html";&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML BODY=mail;&lt;BR /&gt;%rapport;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;BR /&gt;%mend Email_Test;&lt;BR /&gt;%Email_Test('firstname','lastname');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone already saw this error message and how can we solve it.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 15:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458678#M29539</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-04-30T15:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: getting this ERROR: E-mail : 452 4.3.1 Insufficient system resources while using FILENAME mail E</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458682#M29540</link>
      <description>&lt;P&gt;Here's a test code ver2:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro report;&lt;BR /&gt;proc report data=sashelp.class;&lt;BR /&gt;col name age sex;&lt;BR /&gt;define name / style(column)=[cellwidth=1in];&lt;BR /&gt;define age / style(column)=[cellwidth=.5in];&lt;BR /&gt;define sex / style(column)=[cellwidth=.5in];&lt;BR /&gt;title "Using the CELLWIDTH= Style with PROC REPORT";&lt;BR /&gt;run;&lt;BR /&gt;%mend report;&lt;BR /&gt;%report;&lt;/P&gt;&lt;P&gt;%Macro Email_test(Firstname,Lastname);&lt;BR /&gt;%global&amp;nbsp;email Name Name2;&lt;BR /&gt;data _null_;&lt;BR /&gt;call symput ("Name",&amp;amp;Firstname.||" "||&amp;amp;Lastname.);&lt;/P&gt;&lt;P&gt;/*You can change the email extention&amp;nbsp;@gmail.com for your email server name */&lt;BR /&gt;call symput ("email",&amp;amp;Firstname.||"."||&amp;amp;Lastname.||"@gmail.com");&lt;BR /&gt;call symput ("Name2","'"||&amp;amp;FirstName.||" "||&amp;amp;Lastname.||"'");&lt;BR /&gt;run;&lt;BR /&gt;options emailsys = SMTP;&lt;BR /&gt;options emailhost = confidential;&lt;BR /&gt;FILENAME mail EMAIL TO=("&amp;amp;email." )&lt;BR /&gt;SUBJECT="Test - Report for: &amp;amp;Name" CONTENT_TYPE="text/html";&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML BODY=mail;&lt;BR /&gt;%report;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;BR /&gt;%mend Email_Test;&lt;BR /&gt;%Email_Test('firstname','lastname');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone already saw this error message and how can we solve it.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 15:15:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458682#M29540</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-04-30T15:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: getting this ERROR: E-mail : 452 4.3.1 Insufficient system resources while using FILENAME mail E</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458984#M29567</link>
      <description>&lt;P&gt;The members of the support team found that it was a problem related to our email server.&amp;nbsp; Nothing to do with SAS.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 14:50:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/getting-this-ERROR-E-mail-452-4-3-1-Insufficient-system/m-p/458984#M29567</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-01T14:50:26Z</dc:date>
    </item>
  </channel>
</rss>

