<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Practical Programming: Sending Email</title>
	<atom:link href="http://devshaped.com/2009/01/practical-programming-sending-email/feed/" rel="self" type="application/rss+xml" />
	<link>http://devshaped.com/2009/01/practical-programming-sending-email/</link>
	<description></description>
	<lastBuildDate>Sat, 19 Jun 2010 20:01:03 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: waqas</title>
		<link>http://devshaped.com/2009/01/practical-programming-sending-email/comment-page-1/#comment-139</link>
		<dc:creator>waqas</dc:creator>
		<pubDate>Thu, 19 Mar 2009 19:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://devshaped.com/2009/01/practical-programming-sending-email/#comment-139</guid>
		<description>i tried this example but the mail sent as not on behalf. i mean only one email address was shown in the from when i opened that mail. although i receieved many emails which showing other email address in from field using on behalf of. kindly help me</description>
		<content:encoded><![CDATA[<p>i tried this example but the mail sent as not on behalf. i mean only one email address was shown in the from when i opened that mail. although i receieved many emails which showing other email address in from field using on behalf of. kindly help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastien Aube</title>
		<link>http://devshaped.com/2009/01/practical-programming-sending-email/comment-page-1/#comment-1</link>
		<dc:creator>Sebastien Aube</dc:creator>
		<pubDate>Sat, 07 Feb 2009 01:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://devshaped.com/2009/01/practical-programming-sending-email/#comment-1</guid>
		<description>Great post Derek,

You can also provide the settings for your SmptClient using the following configuration section.

&lt;system.net&gt;
  &lt;mailSettings&gt;
    &lt;smtp from=&quot;user@server.address&quot;&gt;
      &lt;network host=&quot;mail.server.address&quot; port=&quot;25&quot; userName=&quot;username&quot; password=&quot;secret&quot; defaultCredentials=&quot;true&quot; /&gt;
    &lt;/smtp&gt;
  &lt;/mailSettings&gt;
&lt;/system.net&gt;

In your sample it replaces the first 4 lines of code with:

SmtpClient _smtp = new SmtpClient();
_smtp.EnableSsl = true;

</description>
		<content:encoded><![CDATA[<p>Great post Derek,</p>
<p>You can also provide the settings for your SmptClient using the following configuration section.</p>
<p>&lt;system.net&gt;<br />
  &lt;mailSettings&gt;<br />
    &lt;smtp from=&quot;user@server.address&quot;&gt;<br />
      &lt;network host=&quot;mail.server.address&quot; port=&quot;25&quot; userName=&quot;username&quot; password=&quot;secret&quot; defaultCredentials=&quot;true&quot; /&gt;<br />
    &lt;/smtp&gt;<br />
  &lt;/mailSettings&gt;<br />
&lt;/system.net&gt;</p>
<p>In your sample it replaces the first 4 lines of code with:</p>
<p>SmtpClient _smtp = new SmtpClient();<br />
_smtp.EnableSsl = true;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
