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

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

How to sent on behalf of mail in C#.NET

In this post I am want to tell how send behalf mail in C#.NET. Behalf of mail is means, it is like normal mail send only. But we will add Sender option in that mail header. So, I second side when they’re view that mail in from mail ID option they can see like this [sender mail ID] on behalf of [from mail ID]. We can send behalf of mail in C#.NET easily, same like VB.NET too. Please check with image how it will be in receiver side.. if you see this mail you can understand what is behalf of mail?...
More