Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / C#
Article

Sending Mail With An Embedded Image

Rate me:
Please Sign up or sign in to vote.
3.31/5 (12 votes)
19 Jun 2007CPOL 52.5K   26   7
Sending Mail With An Embedded Image

Introduction

This article will help to get a basic idea of mailing with an embedded image or object from ASP.NET 2.0 using SMTP client.

Background

When I was in need of the same code, I got a lot of code from different sites but in some cases the mail was going in particular cases only. I mean to say that in Yahoo, the image was displaying, but in others it was not. In some cases, the image was going as an attachment so I wrote this code which sends your image with the mail body. For example, if you want to send your company's logo in the body of the mail, you can do that with this code.

Using the Code

The code is very simple and pretty straightforward. As a prerequisite, you should have access to a mail server.

C#
//create the mail message
MailMessage mail = new MailMessage();

//set the addresses
mail.From = new MailAddress("prashant@gmail.com");
mail.To.Add("you@gmail.com");

//set the content
mail.Subject = "Mail From Prashant Lavate";

//first we create the Plain Text part
AlternateView plainView = AlternateView.CreateAlternateViewFromString
    ("This is my text , viewable by those clients that don't support html", 
    null, "text/plain");

//then we create the HTML part
//to embed images, we need to use the prefix 'cid' in the img src value
//the cid value will map to the Content-Id of a Linked resource.
//thus <img src='cid:logo'> will map to a LinkedResource with a 
//ContentId of 'companylogo'
AlternateView htmlView = AlternateView.CreateAlternateViewFromString
    ("Here is an embedded image.<img src=cid:companylogo>", null, "text/html");

//create the LinkedResource (embedded image)
LinkedResource logo = new LinkedResource( "c:\\temp\\prashant.gif" );
logo.ContentId = "logo";
//add the LinkedResource to the appropriate view
htmlView.LinkedResources.Add(logo);

//add the views
mail.AlternateViews.Add(plainView);
mail.AlternateViews.Add(htmlView);

//send the message
SmtpClient smtp = new SmtpClient("127.0.0.1"); //specify the mail server address
smtp.Send(mail); 

Please rate the article and don't hesitate to write to me in case you have any doubts or concerns. Please do check out my other articles which may help you out.

History

  • 20th June, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Prashant is working with Microsoft Technology from last two years. He has worked in ASP.NET,C#.NET,VB.NET,SQL Server.

Comments and Discussions

 
Generalcode improvement Pin
keeeeeeeeeeiff21-Sep-07 1:49
keeeeeeeeeeiff21-Sep-07 1:49 
GeneralRe: code improvement Pin
Robcast214-Mar-08 1:04
Robcast214-Mar-08 1:04 
QuestionGmail replaces from address Pin
Miguel Domingos20-Jul-07 1:21
Miguel Domingos20-Jul-07 1:21 
Generaldont work :( Pin
yarns16-Jul-07 23:47
yarns16-Jul-07 23:47 
GeneralError in code Pin
jonmbutler20-Jun-07 4:56
professionaljonmbutler20-Jun-07 4:56 
GeneralNice and clean Pin
Tom Janssens20-Jun-07 4:15
Tom Janssens20-Jun-07 4:15 
GeneralRe: Nice and clean Pin
Prashant B. Lavate1-Aug-07 23:40
Prashant B. Lavate1-Aug-07 23:40 
thanksBig Grin | :-D



Thanks & Regards,
Prashant B. Lavate
Software Engineer
Mobile-9890413352
Pune(India)

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.