<?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/"
		>
<channel>
	<title>Comments on: Asp.NET Mail using Gmail SMTP Tutorial</title>
	<atom:link href="http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/</link>
	<description>Think Different. Make a Difference.</description>
	<lastBuildDate>Thu, 10 Nov 2011 18:01:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: ABHILASH</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-115</link>
		<dc:creator>ABHILASH</dc:creator>
		<pubDate>Tue, 26 Jul 2011 15:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-115</guid>
		<description>hi in my project i used the following code...please check whether it is correct or not. 
 
----SMTP Mailing in GMAIL---- 
 
i) take the source of web configuration file 
change the code as follows:- 
&lt;/system.web&gt; 
&lt;system.net&gt; 
&lt;mailsettings&gt; 
&lt;smtp from=&quot;yourname@gmail.com&quot;&gt; 
&lt;network host=&quot;smtp.gmail.com&quot;port=&quot;587&quot; username=&quot;yourusername&quot;password=&quot;yourpassword&quot;/&gt; 
&lt;/smtp&gt; 
&lt;/mailsettings&gt; 
&lt;/system.net&gt; 
 
ii)FORM CODE:- 
 
Linkbutton1_click 
{ 
smtpclient s=new smtp client(); 
e.enable ss1=true; 
s.send(&quot;youremail@gmail.com&quot;,textbox1.text,textbox2.text,textbox3.text); 
response.write(&quot;Succes&quot;); 
} 
} </description>
		<content:encoded><![CDATA[<p>hi in my project i used the following code&#8230;please check whether it is correct or not. </p>
<p>&#8212;-SMTP Mailing in GMAIL&#8212;- </p>
<p>i) take the source of web configuration file<br />
change the code as follows:-<br />
&lt;/system.web&gt;<br />
&lt;system.net&gt;<br />
&lt;mailsettings&gt;<br />
&lt;smtp from=&quot;yourname@gmail.com&quot;&gt;<br />
&lt;network host=&quot;smtp.gmail.com&quot;port=&quot;587&quot; username=&quot;yourusername&quot;password=&quot;yourpassword&quot;/&gt;<br />
&lt;/smtp&gt;<br />
&lt;/mailsettings&gt;<br />
&lt;/system.net&gt; </p>
<p>ii)FORM CODE:- </p>
<p>Linkbutton1_click<br />
{<br />
smtpclient s=new smtp client();<br />
e.enable ss1=true;<br />
s.send(&quot;youremail@gmail.com&quot;,textbox1.text,textbox2.text,textbox3.text);<br />
response.write(&quot;Succes&quot;);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhiren Shah</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-128</link>
		<dc:creator>Dhiren Shah</dc:creator>
		<pubDate>Mon, 25 Apr 2011 15:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-128</guid>
		<description>Thank you </description>
		<content:encoded><![CDATA[<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vishal Kumar</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-96</link>
		<dc:creator>Vishal Kumar</dc:creator>
		<pubDate>Mon, 10 May 2010 13:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-96</guid>
		<description>Hey janani, sorry for the late reply.  
Please have a look at&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.attachments.aspx&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/en-us/library/system.ne...&lt;/a&gt; 
 
Critical are these lines: 
 
 
// Create  the file attachment for this e-mail message. 
Attachment data = new Attachment(file, MediaTypeNames.Application.Octet); 
// Add time stamp information for the file. 
ContentDisposition disposition = data.ContentDisposition; 
disposition.CreationDate = System.IO.File.GetCreationTime(file); 
disposition.ModificationDate = System.IO.File.GetLastWriteTime(file); 
disposition.ReadDate = System.IO.File.GetLastAccessTime(file); 
// Add the file attachment to this e-mail message. 
message.Attachments.Add(data); 
 </description>
		<content:encoded><![CDATA[<p>Hey janani, sorry for the late reply.<br />
Please have a look at<a href="http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.attachments.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/system.ne&#8230;</a> </p>
<p>Critical are these lines: </p>
<p>// Create  the file attachment for this e-mail message.<br />
Attachment data = new Attachment(file, MediaTypeNames.Application.Octet);<br />
// Add time stamp information for the file.<br />
ContentDisposition disposition = data.ContentDisposition;<br />
disposition.CreationDate = System.IO.File.GetCreationTime(file);<br />
disposition.ModificationDate = System.IO.File.GetLastWriteTime(file);<br />
disposition.ReadDate = System.IO.File.GetLastAccessTime(file);<br />
// Add the file attachment to this e-mail message.<br />
message.Attachments.Add(data);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: janani</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-86</link>
		<dc:creator>janani</dc:creator>
		<pubDate>Mon, 22 Mar 2010 14:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-86</guid>
		<description>hiiiiiiiiiiiii  
 
ya i received mail yar i am very happyyyyyyyyyyyyyyy thank u soooooooooooooo muchhhhhhhhhhhhh 
 
plzzzzzzzzzzzzz tell me about the attachment file 
 
how to send mail with attachment file 
plzzzzzz teach me yar </description>
		<content:encoded><![CDATA[<p>hiiiiiiiiiiiii  </p>
<p>ya i received mail yar i am very happyyyyyyyyyyyyyyy thank u soooooooooooooo muchhhhhhhhhhhhh </p>
<p>plzzzzzzzzzzzzz tell me about the attachment file </p>
<p>how to send mail with attachment file<br />
plzzzzzz teach me yar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: janani</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-85</link>
		<dc:creator>janani</dc:creator>
		<pubDate>Mon, 22 Mar 2010 14:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-85</guid>
		<description>hhiiiiiii 
 
 i did ur process ,,, i run the program  
but it is showing untitled page 
 
plzzzzz help me how to send mail with attachment file to mail id  
it   will be moreeeeeee helpful for my project plzzzzzz </description>
		<content:encoded><![CDATA[<p>hhiiiiiii </p>
<p> i did ur process ,,, i run the program<br />
but it is showing untitled page </p>
<p>plzzzzz help me how to send mail with attachment file to mail id<br />
it   will be moreeeeeee helpful for my project plzzzzzz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Where is the part for my recipient email address in this ASP code? &#124; Html Email Signature</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-61</link>
		<dc:creator>Where is the part for my recipient email address in this ASP code? &#124; Html Email Signature</dc:creator>
		<pubDate>Tue, 06 Oct 2009 19:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-61</guid>
		<description>[...] Tutorial for sending email in Asp.NET using GMail SMTP &#124; Vishal Kumar [...]

[WORDPRESS HASHCASH] The comment&#039;s server IP (208.101.23.85) doesn&#039;t match the comment&#039;s URL host IP (208.101.30.244) and so is spam.</description>
		<content:encoded><![CDATA[<p>[...] Tutorial for sending email in Asp.NET using GMail SMTP | Vishal Kumar [...]</p>
<p>[WORDPRESS HASHCASH] The comment&#8217;s server IP (208.101.23.85) doesn&#8217;t match the comment&#8217;s URL host IP (208.101.30.244) and so is spam.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: what is asp? can i use it&#8217;in my html form to send to my email address? &#124; Html Email Signature</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-54</link>
		<dc:creator>what is asp? can i use it&#8217;in my html form to send to my email address? &#124; Html Email Signature</dc:creator>
		<pubDate>Wed, 02 Sep 2009 02:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-54</guid>
		<description>[...] Tutorial for sending email in Asp.NET using GMail SMTP &#124; Vishal Kumar [...]

[WORDPRESS HASHCASH] The comment&#039;s server IP (208.101.23.85) doesn&#039;t match the comment&#039;s URL host IP (208.101.30.244) and so is spam.</description>
		<content:encoded><![CDATA[<p>[...] Tutorial for sending email in Asp.NET using GMail SMTP | Vishal Kumar [...]</p>
<p>[WORDPRESS HASHCASH] The comment&#8217;s server IP (208.101.23.85) doesn&#8217;t match the comment&#8217;s URL host IP (208.101.30.244) and so is spam.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Need a simple script to email html form? &#124; Html Email Signature</title>
		<link>http://www.vishalkumar.in/2009/06/aspnet-mail-using-gmail-smtp-tutorial/comment-page-1/#comment-47</link>
		<dc:creator>Need a simple script to email html form? &#124; Html Email Signature</dc:creator>
		<pubDate>Mon, 03 Aug 2009 11:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.vishalkumar.in/?p=157#comment-47</guid>
		<description>[...] Tutorial for sending email in Asp.NET using GMail SMTP &#124; Vishal Kumar [...]

[WORDPRESS HASHCASH] The comment&#039;s server IP (208.101.23.85) doesn&#039;t match the comment&#039;s URL host IP (208.101.30.244) and so is spam.</description>
		<content:encoded><![CDATA[<p>[...] Tutorial for sending email in Asp.NET using GMail SMTP | Vishal Kumar [...]</p>
<p>[WORDPRESS HASHCASH] The comment&#8217;s server IP (208.101.23.85) doesn&#8217;t match the comment&#8217;s URL host IP (208.101.30.244) and so is spam.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

