<?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 Enterprise Guide Email Warning in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236226#M17043</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is not about which method to use for data transfer. Thanks for your answers and time.&lt;/P&gt;</description>
    <pubDate>Tue, 24 Nov 2015 17:11:22 GMT</pubDate>
    <dc:creator>anu_ha</dc:creator>
    <dc:date>2015-11-24T17:11:22Z</dc:date>
    <item>
      <title>SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236182#M17036</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to use the below step to send the email and attach the file. But I get a warning as "WARNING: Email: 552 4.3.1 Message size exceeds fixed maximum message size". The same code works for smaller excel files. The file size is 5 MB, which is giving this warning, Is there change I need to make to this code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%macro email_rpt1;&lt;/P&gt;
&lt;P&gt;filename outmail email&lt;BR /&gt; to = ("abc@gmail.com")&lt;BR /&gt; subject = "Weekly Report"&lt;BR /&gt; attach=("C:\OUTPUT\Weekly Reports\ADMIN_REPORT.xlsx"&lt;BR /&gt; content_type="application/xlsx" LRECL = 9999)&lt;BR /&gt; from = "DSReporting";&lt;/P&gt;
&lt;P&gt;data _null_;&lt;BR /&gt; file outmail;&lt;BR /&gt; put "Hi All,";&lt;BR /&gt; put "Please find the Weekly report attached .";&lt;BR /&gt; put ;&lt;BR /&gt; put ;&lt;BR /&gt; put;&lt;BR /&gt; run;&lt;/P&gt;
&lt;P&gt;%mend email_rpt1;&lt;/P&gt;
&lt;P&gt;%email_rpt1;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 12:21:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236182#M17036</guid>
      <dc:creator>anu_ha</dc:creator>
      <dc:date>2015-11-24T12:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236185#M17037</link>
      <description>&lt;P&gt;The warning/error is generated by your e-mail server, I think. &amp;nbsp;That's the SMTP e-mail server that would be listed in:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options group=email; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;5MB is pretty big for an XLSX file. &amp;nbsp;XLSX is a compressed format (like ZIP), and it's quite a large attachment as part of a regular e-mail report. &amp;nbsp;Is there anything you can do to make the file smaller? &amp;nbsp;Your recipients might thank you for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you creating a native XLSX file (with PROC EXPORT DBMS=XLSX or ODS EXCEL)? &amp;nbsp;Or is the file really an XLS (not compressed) or is it ODS TAGSETS.EXCELXP output (verbose XML, which can be quite large)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 12:51:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236185#M17037</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-11-24T12:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236186#M17038</link>
      <description>&lt;P&gt;Can you send files of that size via your normal email client? &amp;nbsp;I would suspect that it is a limit put on by your IT group, for instance, I cannot send files larger than 10mb via my mail server due to this kind of restriction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would also suggest that email is not the best method of getting reports out to people. &amp;nbsp;Use a shared area/portal where reports are placed where people can go to view them, Sharepoint, Livelink, web portal etc. are all designed for this.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 12:55:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236186#M17038</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-24T12:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236198#M17039</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply. There are few tabs on the report which is just data dump which makes the report of such size. If it was upto me I would have done a summary. But the user wants the data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About the excel file it is not created using SAS. It is a usual office excel file but had data imported from csv which is created using SAS. I know the ods creates quite large file,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 14:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236198#M17039</guid>
      <dc:creator>anu_ha</dc:creator>
      <dc:date>2015-11-24T14:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236207#M17040</link>
      <description>&lt;P&gt;Not to keep on the same point too much, but what you are talking about is data transfer. &amp;nbsp;Email really isn't a good option here. &amp;nbsp;In my company data transfer by unsecured email is not allowed, by poilicy. &amp;nbsp;I would be surprised if its not the same across the board. &amp;nbsp;I would advise internal delivery should be via secured network drive, portal, sharepoint etc. External would be across secured file transfer.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 15:12:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236207#M17040</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-24T15:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Email Warning</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236226#M17043</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is not about which method to use for data transfer. Thanks for your answers and time.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 17:11:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Email-Warning/m-p/236226#M17043</guid>
      <dc:creator>anu_ha</dc:creator>
      <dc:date>2015-11-24T17:11:22Z</dc:date>
    </item>
  </channel>
</rss>

