This is my second post...In this article.I will explain some steps that will help you to implement Email subscription for your RSS feed using asp.net application.
For creating RSS feed using asp.net 2.0 refer this link
http://www.geekpedia.com/tutorial157_Create-an-RSS-feed-using-ASP.NET-2.0.html
The structure of the Sample RSS(xml) file will be like this.
Example –
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>W3Schools Home Page</title>
<link>http://www.w3schools.com</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3schools.com/rss</link>
<description>New RSS tutorial on W3Schools</description>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.w3schools.com/xml</link>
<description>New XML tutorial on W3Schools</description>
</item>
</channel>
<rss version="2.0">
<channel>
<title>W3Schools Home Page</title>
<link>http://www.w3schools.com</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3schools.com/rss</link>
<description>New RSS tutorial on W3Schools</description>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.w3schools.com/xml</link>
<description>New XML tutorial on W3Schools</description>
</item>
</channel>
</rss>
Steps that I followed to implement RSS feed email subscription through www.feedburner.com
1) Using our Gmail Id we can login to feedburner website or you can create a user account in feed burner.
2)After registration(free), It asks to Type your blog or feed address.There you have to specify the XML file path.
ex:- http://www.example.com/feed.xml
3) Feed burner provides users custom setting’s option like “Email subscription”, “BUZZ on google”, ”Publish on My Twitter account”, “Post on my facebook” etc.
4) Feedburner will send the email once in a day between fixed Time interval
Ex – 7.00 AM between 9.00AM
9.00AM between 11.00AM
:::
:::
5.00AM between 7.00AM
5) In this scheduled time, Every day It will check for new blog on a particular day. If there is new blog on that particular date. It will send an email to the subscribed users.
No comments:
Post a Comment