posted on February 22, 2008
Telligent 发布了 CMS 系统
Telligent Community Server 的出产厂商
发布了 他们的新CMS产品 GraffitiCMS
关于价格:http://get.graffiticms.com/
Licensing:http://graffiticms.com/learn-more/licensing/
Telligent Community Server 的出产厂商
发布了 他们的新CMS产品 GraffitiCMS
关于价格:http://get.graffiticms.com/
Licensing:http://graffiticms.com/learn-more/licensing/
位于code.msdn.microsoft.com的一个小型Library
你可以很简单的使用它来通过gmail发送邮件或者获取Gmail Atom Feed 。
Visit here to download the GMail Tools
// Create the object and get the feed
RC.Gmail.GmailAtomFeed gmailFeed = new RC.Gmail.GmailAtomFeed("username", "password");
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 < 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;
}