<?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 [SAS 9.2, Windows XP]Issue sending lotus notes email with SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56940#M12200</link>
    <description>Hello,&lt;BR /&gt;
I have a mail server and a Lotus Notes 7 client.&lt;BR /&gt;
&lt;BR /&gt;
I am trying to send an email with SAS.&lt;BR /&gt;
I have modified my win.ini file according to the Lotus Notes known issue :&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/9/641.html" target="_blank"&gt;http://support.sas.com/kb/9/641.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Submitting the following code :&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
options&lt;BR /&gt;
	EMAILAUTHPROTOCOL=NONE&lt;BR /&gt;
	EMAILHOST="IP adress of the mail server"&lt;BR /&gt;
	EMAILID="MyFirtsName MyName/MyCompany-INTRANET"&lt;BR /&gt;
	EMAILPW="MyLotusNotesPassword"&lt;BR /&gt;
	EMAILSYS=VIM&lt;BR /&gt;
;&lt;BR /&gt;
	&lt;BR /&gt;
filename courriel email&lt;BR /&gt;
	from="me@mycompany.fr"&lt;BR /&gt;
	to="myCollegue@mycompany.fr"&lt;BR /&gt;
	subject="test"&lt;BR /&gt;
;&lt;BR /&gt;
&lt;BR /&gt;
DATA _null_;&lt;BR /&gt;
	file courriel;&lt;BR /&gt;
	put 'This is a test';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Provides the error : "Undetermined I/O error"&lt;BR /&gt;
&lt;BR /&gt;
If I ty to use the EMAILSYS=SMTP option instead of VIM to use directly the SMTP server, this provides  the error : "The timeout connection has expired".&lt;BR /&gt;
&lt;BR /&gt;
Would you see what is wrong in my code ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
    <pubDate>Thu, 30 Dec 2010 15:01:22 GMT</pubDate>
    <dc:creator>phil27</dc:creator>
    <dc:date>2010-12-30T15:01:22Z</dc:date>
    <item>
      <title>[SAS 9.2, Windows XP]Issue sending lotus notes email with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56940#M12200</link>
      <description>Hello,&lt;BR /&gt;
I have a mail server and a Lotus Notes 7 client.&lt;BR /&gt;
&lt;BR /&gt;
I am trying to send an email with SAS.&lt;BR /&gt;
I have modified my win.ini file according to the Lotus Notes known issue :&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/9/641.html" target="_blank"&gt;http://support.sas.com/kb/9/641.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Submitting the following code :&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
options&lt;BR /&gt;
	EMAILAUTHPROTOCOL=NONE&lt;BR /&gt;
	EMAILHOST="IP adress of the mail server"&lt;BR /&gt;
	EMAILID="MyFirtsName MyName/MyCompany-INTRANET"&lt;BR /&gt;
	EMAILPW="MyLotusNotesPassword"&lt;BR /&gt;
	EMAILSYS=VIM&lt;BR /&gt;
;&lt;BR /&gt;
	&lt;BR /&gt;
filename courriel email&lt;BR /&gt;
	from="me@mycompany.fr"&lt;BR /&gt;
	to="myCollegue@mycompany.fr"&lt;BR /&gt;
	subject="test"&lt;BR /&gt;
;&lt;BR /&gt;
&lt;BR /&gt;
DATA _null_;&lt;BR /&gt;
	file courriel;&lt;BR /&gt;
	put 'This is a test';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Provides the error : "Undetermined I/O error"&lt;BR /&gt;
&lt;BR /&gt;
If I ty to use the EMAILSYS=SMTP option instead of VIM to use directly the SMTP server, this provides  the error : "The timeout connection has expired".&lt;BR /&gt;
&lt;BR /&gt;
Would you see what is wrong in my code ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Thu, 30 Dec 2010 15:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56940#M12200</guid>
      <dc:creator>phil27</dc:creator>
      <dc:date>2010-12-30T15:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: [SAS 9.2, Windows XP]Issue sending lotus notes email with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56941#M12201</link>
      <description>Given the age of that SAS support note, I would question its currency / accuracy today.&lt;BR /&gt;
&lt;BR /&gt;
Also, suggest you run the following SAS code - the OPTIONS statement you describe for the EMAILxxxx options, is only allowed at SAS start-up in the CONFIG or as a command-line option setting:&lt;BR /&gt;
&lt;BR /&gt;
PROC OPTIONS GROUP=EMAIL;&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Suggested Google advanced search argument, this topic / post:&lt;BR /&gt;
&lt;BR /&gt;
send lotus notes email config site:sas.com

Message was edited by: sbb</description>
      <pubDate>Thu, 30 Dec 2010 15:16:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56941#M12201</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-12-30T15:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: [SAS 9.2, Windows XP]Issue sending lotus notes email with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56942#M12202</link>
      <description>Thanks  sbb,&lt;BR /&gt;
&lt;BR /&gt;
I have added the following lines lines to the sasv9.cfg file :&lt;BR /&gt;
&lt;BR /&gt;
[pre]options&lt;BR /&gt;
	-EMAILAUTHPROTOCOL=NONE&lt;BR /&gt;
	-EMAILHOST="IP adress of the mail server"&lt;BR /&gt;
	-EMAILID="MyFirtsName MyName/MyCompany-INTRANET"&lt;BR /&gt;
	-EMAILPW="MyLotusNotesPassword"&lt;BR /&gt;
	-EMAILSYS=VIM&lt;BR /&gt;
;[/pre]&lt;BR /&gt;
&lt;BR /&gt;
and the error does not occur no more.

Message was edited by: phil27</description>
      <pubDate>Thu, 30 Dec 2010 15:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-9-2-Windows-XP-Issue-sending-lotus-notes-email-with-SAS/m-p/56942#M12202</guid>
      <dc:creator>phil27</dc:creator>
      <dc:date>2010-12-30T15:35:32Z</dc:date>
    </item>
  </channel>
</rss>

