How to add Alternate views for email in C#.net

Use the AlternateViews property to specify copies of an e-mail message in different formats. For example, if you send a message in HTML, you might also want to provide a plain text version in case some of the recipients use e-mail readers that cannot display HTML content. Code :- using System.Net.Mail; // import System.Net.Mail; //serverDetails - Your smtp server details //recipient    - To mail ID public void MultipleViewsMailSend(string serverDetails, string recipient) { MailMessage msg = ne...
More

Crazy bug in WordPress and YouTube too

In this post I am going show some interesting.  I found one interesting thing in Wordpress and YouTube too.. Those two sites are most popular in WWW now a days. They confirmed we can't deliver 100% bug free software. Some times things may go wrong, Like this. Video :- http://www.youtube.com/watch?v=QIlWKsRJEb8 When I am browsing I found one RSS feed list. it is added in one site. I clicked on one interesting thing. That time it is saying (Wodpress) The authors have deleted this blog. The cont...
More

How to send email with delivery notification in C#

In this post I am going to explain about email delivery notification in .NET. Delivery notifications used to trace the mail delivered or not and when it is delivered and is any delay in sending e-mail..!. Once mail is delivered to the recipient mailbox and delivery notification mail will be sent to the sender mailbox in case of delay or fail to delivery the mail server will send a mail back to sender. We can set delivery notification in mail in C#.NET easily same in VB.NET. How we can do this? ...
More