Embed Image in mail
How to add logo in mail? How to add an image object in mail with out having any static URL?
(for example <img src="http://shareourideas.com/wp-content/uploads/2010/03/twitter_logo_header.png" />)
Here best solution for this…!
C# Code :-
Import this Net.Mail and Net.Mime
using System.Net.Mail;
using System.Net.Mime;
//Then use this code in button click or your own function
{
string strMailContent = "Here is your mail content….";
string fromAddress = "your-email@[your...
More