Click here to Skip to main content
Licence CPOL
First Posted 19 Jun 2007
Views 24,264
Bookmarked 25 times

Sending Mail With An Embedded Image

By | 19 Jun 2007 | Article
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.

//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)

About the Author

Lavate Prashant B.

Web Developer

India India

Member

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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalcode improvement Pinmemberkeeeeeeeeeeiff1:49 21 Sep '07  
This code didn't quite work straight out the box for me. The image was being attached to the email as an unknown file instead of being embedded within the html email. I had to add the mimetype of the image that I was adding to the LinkedResource instantiation.
 
So that line would read like this;
 
//create the LinkedResource (embedded image)
LinkedResource logo = new LinkedResource( "c:\\temp\\prashant.gif", "image/jpeg");
 
Note the "image/jpeg" addition.
 
HTH,
Keith
GeneralRe: code improvement PinmemberRobcast21:04 14 Mar '08  
QuestionGmail replaces from address PinmemberMiguel Domingos1:21 20 Jul '07  
Generaldont work :( Pinmemberyarns23:47 16 Jul '07  
GeneralError in code Pinmemberjonmbutler4:56 20 Jun '07  
GeneralNice and clean PinmemberTom Janssens4:15 20 Jun '07  
GeneralRe: Nice and clean PinmemberPrashant Lavate23:40 1 Aug '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 20 Jun 2007
Article Copyright 2007 by Lavate Prashant B.
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid