How to Read GMail Inbox Using RSS Feed
Do you use free email service from Google which called GMail (link)? I want to tell you about a feature you had probably love to know.
The feature will enable you to easily and quickly grab the contents of your GMail inbox using RSS feed. To try that feature, just use this URL as your RSS feed URL:
https://USERNAME : PASSWORD @ gmail.google.com/gmail/feed/atom
Replace the USERNAME with your GMail username, and the PASSWORD with your GMail password. You need to paste that URL into your browser address bar and you can start to read your email. That is so easy.
Otherwise, I think this is not a good idea to have your password shown on the browser. Especially, if you are using public feed aggregator service, like feedburner, since they might get your GMail password.
Popularity: 23% [?]
can you tell me how toretrive my gmail to read
how can i read my gmail
The layout of the weblog is absolutely messed up when I look at it in Opera. Plz fix it.
It is an undeniable fact that, in comparison with the past, people today are always preferred over things in fashion. Whether clothing, vehicles or Best Replicas Handbags, is that people today are things that are simply outstanding in terms of fashion and quality.
This is my solution:
var objClient = new System.Net.WebClient();var response ="";
var xmlDoc = new XmlDocument();
objClient.Credentials = new System.Net.NetworkCredential("USER_NAME", "PASSWORD");
response = Encoding.UTF8.GetString(objClient.DownloadData("https://mail.google.com/mail/feed/atom"));
response = response.Replace("", "");
xmlDoc.LoadXml(response);
var node = xmlDoc.SelectSingleNode("/feed/fullcount");
var mailCount = Convert.ToInt32(node.InnerText); //Get the number of unread emails
if(mailCount > 0)
{
var nodelist = xmlDoc.SelectNodes("/feed/entry");
var ttl = xmlDoc.SelectSingleNode("title");
foreach(XmlNode nd in nodelist)
{
var date = nd.SelectSingleNode("issued").InnerText;
var addr = nd.SelectSingleNode("author/email").InnerText;
}
}