65.9K
CodeProject is changing. Read more.
Home

How to Send Email Messages with Embedded Images

starIconstarIconstarIconstarIconstarIcon

5.00/5 (1 vote)

May 2, 2013

MIT
viewsIcon

13261

How to send email messages with embedded images.

While creating email messages with HTML content, normally the images are displayed with IMG tag, where the SRC attribute is pointing to an image, which is hosted in the web server. Most email clients will not display the images, which is downloading from the web. Instead of pointing to web URL, you can embed image in the mail message with the help of LinkedResource and AlternateView classes.

Here is the snippet, which embeds an image to the email. The convention to access linked resource is cid:name of the linked resource, which is the value of IMG tag SRC attribute.

var logo = new LinkedResource(@"C:\logo.jpg");
logo.ContentId = Guid.NewGuid().ToString();
var body = 
    string.Format(@"<html><body><h1>Image</h1>
    <img src=""cid:{0}"" /></body></html>", 
    logo.ContentId);
var view = AlternateView.CreateAlternateViewFromString(body, null, "text/html");
view.LinkedResources.Add(logo);
using (var message = new MailMessage(fromAddress, toAddress)
{
    Subject = subject,
    Body = body,
    IsBodyHtml = true
})
{
    message.AlternateViews.Add(view);
    smtp.Send(message);
}

Note: This method will increase the size of the email, as the images are embedded.

Related Content

  1. Fluent email library for C# using DynamicObject
  2. Uploading Files using Webservice
  3. Post data using HttpWebRequest in C#
  4. How to Store and Retrieve files from SQL Server Database
  5. Convert Image to Icon using C#