<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>C# .Net Gmail Tools</title><link>http://code.msdn.microsoft.com/CSharpGmail/Project/ProjectRss.aspx</link><description>I have created a gmail class library that provides some tools for getting gmail atom feeds and for sending emails through gmail using the .Net framework. These tools are not very complicated, but t...</description><item><title>NEW POST: Not authorized</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=87</link><description>&lt;div class="wikidoc"&gt;
I had this too, change the path in GmailAtomFeed.cs to https://mail.google.com/mail/feed/atom&lt;br /&gt;
&lt;/div&gt;</description><author>drift</author><pubDate>Sun, 27 Apr 2008 22:44:39 GMT</pubDate><guid isPermaLink="false">NEW POST: Not authorized 20080427P</guid></item><item><title>NEW POST: Not authorized</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=87</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;&lt;u&gt;Same Error Here&lt;/u&gt;&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;The remote server returned an error: (401) Unauthorized.&amp;quot;&lt;br /&gt; &lt;br /&gt;at RC.Gmail.GmailAtomFeed.GetFeed()&lt;br /&gt; &lt;br /&gt;System.Net.WebExceptionStatus.ProtocolError&lt;br /&gt; &lt;br /&gt;Help??&lt;br /&gt; &lt;br /&gt;&amp;lt;Mark Sayewich/&amp;gt;&lt;br /&gt;
&lt;/div&gt;</description><author>MarkSayewich</author><pubDate>Fri, 28 Mar 2008 13:14:52 GMT</pubDate><guid isPermaLink="false">NEW POST: Not authorized 20080328P</guid></item><item><title>NEW POST: Access to the Contacts</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=157</link><description>&lt;div class="wikidoc"&gt;
Is it possible to gain access to the Contacts list within GMail?&lt;br /&gt;
&lt;/div&gt;</description><author>Coppermill</author><pubDate>Tue, 11 Mar 2008 15:03:44 GMT</pubDate><guid isPermaLink="false">NEW POST: Access to the Contacts 20080311P</guid></item><item><title>NEW POST: How contribute?</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=86</link><description>&lt;div class="wikidoc"&gt;
If you want to contribute and you thin there is moree to do I could put it up on codeplex or sourceforge and give you access as a contributor. Send me a message if you are interested in this.&lt;br /&gt;
&lt;/div&gt;</description><author>quamtar</author><pubDate>Thu, 28 Feb 2008 05:21:21 GMT</pubDate><guid isPermaLink="false">NEW POST: How contribute? 20080228A</guid></item><item><title>NEW POST: Not authorized</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=87</link><description>&lt;div class="wikidoc"&gt;
Hi, I try your code but i've this error : &lt;br /&gt;System.Net.WebException: Le serveur distant a retourn&amp;#233; une erreur : (401) Non autoris&amp;#233;.&lt;br /&gt; &lt;br /&gt;Do you know why?&lt;br /&gt;
&lt;/div&gt;</description><author>loicbar</author><pubDate>Fri, 22 Feb 2008 16:38:41 GMT</pubDate><guid isPermaLink="false">NEW POST: Not authorized 20080222P</guid></item><item><title>NEW POST: How contribute?</title><link>http://code.msdn.microsoft.com/CSharpGmail/Thread/View.aspx?ThreadId=86</link><description>&lt;div class="wikidoc"&gt;
Hi! I'd like contribute to this project, how do it?&lt;br /&gt; &lt;br /&gt;Cheers&lt;br /&gt;
&lt;/div&gt;</description><author>vtortola</author><pubDate>Fri, 22 Feb 2008 14:58:58 GMT</pubDate><guid isPermaLink="false">NEW POST: How contribute? 20080222P</guid></item><item><title>UPDATED RELEASE: CSharp Gmail Tools (Feb 19, 2008)</title><link>http://code.msdn.microsoft.com/CSharpGmail/Release/ProjectReleases.aspx?ReleaseId=427</link><description>Source Code &amp;#38; Help Doc</description><author></author><pubDate>Wed, 20 Feb 2008 05:31:14 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: CSharp Gmail Tools (Feb 19, 2008) 20080220A</guid></item><item><title>CREATED RELEASE: CSharp Gmail Tools (Feb 19, 2008)</title><link>http://code.msdn.microsoft.com/CSharpGmail/Release/ProjectReleases.aspx?ReleaseId=427</link><description>Source Code &amp;#38; Help Doc</description><author></author><pubDate>Wed, 20 Feb 2008 05:30:13 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: CSharp Gmail Tools (Feb 19, 2008) 20080220A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/CSharpGmail/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
I have created a gmail class library that provides some tools for getting gmail atom feeds and for sending emails through gmail using the .Net framework. These tools are not very complicated, but they are simple to use and should save a user some time if they want to integrate an application with gmail.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
GmailMessage
&lt;/h2&gt;Sending email using the System.Web.Mail namespace is very simple, but there is not a straight forward way of sending email using a secure connection or on different ports, which is required by gmail. Because of these drawbacks I created the GmailMessage object that inherits from the MailMessage object, all you have to do is set up the message object and call its send message.&lt;br /&gt; &lt;br /&gt;I also added a couple of static methods that allow you to send a email through your gmail account in as little as one line of code. &lt;br /&gt;Below are some examples of it's usage.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
 
   //Send a message with one line of code 
   RC.Gmail.GmailMessage.SendFromGmail(&amp;quot;username&amp;quot;, &amp;quot;password&amp;quot;, &amp;quot;toAddress@gmail.com&amp;quot;, &amp;quot;subject&amp;quot;, &amp;quot;message body&amp;quot;); 
 
   //Send a message with one line of code with a MailMessage object 
   RC.Gmail.GmailMessage.SendMailMessageFromGmail(&amp;quot;username&amp;quot;, &amp;quot;password&amp;quot;, mailMessageObject); 
 
   //Use the GmailMessage object to create and send your message 
   RC.Gmail.GmailMessage gmailMsg = new RC.Gmail.GmailMessage(&amp;quot;username&amp;quot;, &amp;quot;password&amp;quot;); 
   gmailMsg.To = &amp;quot;RCcode@gmail.com&amp;quot;; 
   gmailMsg.From = &amp;quot;fromAddress@gmail.com&amp;quot;; 
   gmailMsg.Subject = &amp;quot;C# Test Message&amp;quot;; 
   gmailMsg.Body = &amp;quot;Test body&amp;quot;; 
 
   MailAttachment attachment = new MailAttachment(@&amp;quot;c:\testfile.txt&amp;quot;); 
   gmailMsg.Attachments.Add(attachment); 
 
   gmailMsg.Send();
 
&lt;/pre&gt; &lt;br /&gt;&lt;h2&gt;
GmailAtomFeed
&lt;/h2&gt;The GmailAtomFeed class provides a simple object layer for programmatic access to gmails atom feed. In just a couple lines of code the feed will be retreived from gmail and parsed. After that the entries can be accessed through an object layer AtomFeedEntryCollection, plus access to the raw feed and the feeds XmlDocument is also available.&lt;br /&gt; &lt;br /&gt;Below are some examples of it's usage. &lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
 
   // Create the object and get the feed 
   RC.Gmail.GmailAtomFeed gmailFeed = new RC.Gmail.GmailAtomFeed(&amp;quot;username&amp;quot;, &amp;quot;password&amp;quot;); 
   gmailFeed.GetFeed(); 
 
   // Access the feeds XmlDocument 
   XmlDocument myXml = gmailFeed.FeedXml 
 
   // Access the raw feed as a string 
   string feedString = gmailFeed.RawFeed 
 
   // Access the feed through the object 
   string feedTitle = gmailFeed.Title; 
   string feedTagline = gmailFeed.Message; 
   DateTime feedModified = gmailFeed.Modified; 
 
   //Get the entries 
   for(int i = 0; i &amp;amp;lt; gmailFeed.FeedEntries.Count; i++) { 
      entryAuthorName = gmailFeed.FeedEntries[i].FromName; 
      entryAuthorEmail = gmailFeed.FeedEntries[i].FromEmail; 
      entryTitle = gmailFeed.FeedEntries[i].Subject; 
      entrySummary = gmailFeed.FeedEntries[i].Summary; 
      entryIssuedDate = gmailFeed.FeedEntries[i].Received; 
      entryId = gmailFeed.FeedEntries[i].Id; 
   }
 
&lt;/pre&gt; &lt;br /&gt;That's about it short and sweet, I hope this saves you time integrating with gmail from your applications. &lt;br /&gt;
&lt;/div&gt;</description><author>quamtar</author><pubDate>Wed, 20 Feb 2008 05:26:57 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080220A</guid></item></channel></rss>