Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / Windows Forms
Article

Embed HTML Email Images

Rate me:
Please Sign up or sign in to vote.
4.74/5 (10 votes)
5 Jun 20072 min read 235.8K   1.2K   84   28
How to embed images in your email newsletter.

Other projects you will need to download

Screenshot - PSH_Ne2.png

Introduction

How to embed images into an email; short and sweet, but this is all this does.

Background

My sister wanted to send out an email newsletter and wanted to embed images. So, she asked a friend and they sent her some classic ASP code. Then she asked me to make it work. Yeah, right! I fired up VS 2003 and got a hold of MIL HTML Parser and DotNetOpenMail. Within an hour, I had a small little app that could take a webpage, add all the needed images, and change the img tags to point to the content IDs of the images attached to the email and send it off to an email address.

Using the code

This code is really straightforward. Just select an HTML file that you have created, add a subject, a "from" email address, a "to" email address and the SMTP server name or IP address, and then click Send. But what does the code do? Well, you can't get much simpler than this. The code goes off and gets all the img elements.

C#
// Get All the img nodes
GetImageNodes(document.Nodes);
private void GetImageNodes(HtmlNodeCollection nodes)
{
    foreach (HtmlNode node in nodes)
    {
        HtmlElement element = node as HtmlElement;
        if (element != null)
        {
            if (element.Name.ToLower() == "img")
            {
                imageNodes.Add(element);
            }
            if (element.Nodes.Count > 0)
            {
                GetImageNodes(element.Nodes);
            }
        }
    }
}

Then all the needed images are attached and the src attributes of the img elements are set to the content ID of the attached images.

C#
// Change all the img nodes
foreach (HtmlElement element in imageNodes)
{
    FileInfo imageFileInfo = new FileInfo(Path.Combine(
        fileInfo.DirectoryName,
        element.Attributes["src"].Value));
    string contentId =
        imageFileInfo.Name.Replace(imageFileInfo.Extension,
        string.Empty);

    if (!images.ContainsKey(element.Attributes["src"].Value))
    {
        // Add Image to the Email
        images.Add(
            element.Attributes["src"].Value, imageFileInfo.FullName);
        FileAttachment relatedFileAttachment =
                       new FileAttachment(imageFileInfo, contentId);
        if ((imageFileInfo.Extension == ".jpg") ||
            (imageFileInfo.Extension == ".jpeg"))
        {
            relatedFileAttachment.ContentType = "image/jpeg";
        }
        else if (imageFileInfo.Extension == ".gif")
        {
            relatedFileAttachment.ContentType = "image/gif";
        }
        emailMessage.AddRelatedAttachment(relatedFileAttachment);
    }

    //Change the src to "cid:<CONTENTID>"
    element.Attributes["src"].Value = string.Format("cid:{0}", contentId);

}

And then the changed HTML is added to the email message and sent off.

C#
// set the email text to the changes html
emailMessage.HtmlPart = new HtmlAttachment(document.HTML);

emailMessage.Send(new SmtpServer(this.SmtpServerTextBox.Text));

Points of interest

I just slapped this code together in an hour. In fact, writing the article added another 30 minutes. So, this is not code to look to for best practices. I just wanted to embed images into an email with a minimum of hassle and I achieved that goal with this. I hope others will find it useful.

History

  • 5/6/2007 - Version 2.0
  • 27/9/2005 - Version 1.0 - Also happens to be my birthday! :D

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Grosvenor Financial Services Group Ltd.
New Zealand New Zealand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionI have an Outlook Integration (without using Exchange) Pin
Philip Carter16-Oct-11 6:39
Philip Carter16-Oct-11 6:39 
Generalweb interface html to eml Pin
pieruigi12-Oct-10 10:30
pieruigi12-Oct-10 10:30 
QuestionSSL [modified] Pin
Ivica7619-Sep-10 22:51
Ivica7619-Sep-10 22:51 
QuestionSPAM problem Pin
pinokar2-Jul-07 5:57
pinokar2-Jul-07 5:57 
AnswerRe: SPAM problem Pin
KiwiPiet19-Jul-07 12:42
KiwiPiet19-Jul-07 12:42 
GeneralYou can also... Pin
Axel Rietschin5-Jun-07 13:47
professionalAxel Rietschin5-Jun-07 13:47 
GeneralRe: You can also... Pin
KiwiPiet9-Jun-07 16:53
KiwiPiet9-Jun-07 16:53 
GeneralAn Easy Way... Pin
merlin9815-Jun-07 9:14
professionalmerlin9815-Jun-07 9:14 
GeneralRe: An Easy Way... Pin
KiwiPiet19-Jul-07 12:43
KiwiPiet19-Jul-07 12:43 
Questionproblem creating NewsLetter.... Pin
mohnish.bilimoria31-May-07 22:52
mohnish.bilimoria31-May-07 22:52 
Generaldon't want to use SmtpServer for sending newsletter Pin
farooqahm14-May-07 1:21
farooqahm14-May-07 1:21 
GeneralRe: don't want to use SmtpServer for sending newsletter Pin
KiwiPiet20-May-07 22:50
KiwiPiet20-May-07 22:50 
GeneralimageNodes error Pin
Skip6710-Dec-06 6:41
Skip6710-Dec-06 6:41 
GeneralRe: imageNodes error Pin
KiwiPiet20-May-07 22:48
KiwiPiet20-May-07 22:48 
GeneralEmbedd Flash Pin
SaarDagan22-Nov-06 3:20
SaarDagan22-Nov-06 3:20 
GeneralRe: Embedd Flash Pin
KiwiPiet20-May-07 22:47
KiwiPiet20-May-07 22:47 
Generalcodsys.dll Pin
jbrathwaite9-Aug-06 18:52
jbrathwaite9-Aug-06 18:52 
AnswerRe: codsys.dll Pin
KiwiPiet9-Aug-06 21:55
KiwiPiet9-Aug-06 21:55 
Generalhelp Pin
beckymasue1-Aug-06 4:16
beckymasue1-Aug-06 4:16 
AnswerRe: help Pin
KiwiPiet1-Aug-06 13:39
KiwiPiet1-Aug-06 13:39 
Questionbackground images Pin
tianmingkun23-May-06 0:02
tianmingkun23-May-06 0:02 
AnswerRe: background images Pin
KiwiPiet4-Jun-06 15:56
KiwiPiet4-Jun-06 15:56 
Generalthanks Pin
dwatkins@dirq.net4-Oct-05 6:47
dwatkins@dirq.net4-Oct-05 6:47 
GeneralRe: thanks Pin
KiwiPiet4-Oct-05 9:44
KiwiPiet4-Oct-05 9:44 
Generaleven birthday to me.... Pin
jreddy26-Sep-05 16:37
jreddy26-Sep-05 16:37 

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.