vote up 1 vote down star
1

I have an application that sends an HTML formatted email with embedded images. The email looks perfect on many different desktop/web clients. When the email is viewed on a mobile phone that supports HTML email (tested on iPhone, WinMo 6.1) the images are displayed as red 'X's. All other HTML is being displayed correctly. To be clear, the problem is ONLY occurring on mobile clients.

The code to embed images is working perfectly and I don't believe there is any problem with it but I've included some quick sample code below just in case:

MailMessage mail = new MailMessage();
            mail.To.Add("123@myemail.com");
            mail.From = new MailAddress("456@ myemail.com");
            mail.Subject = "Image sample - fails in mobile clients";
            string Body = "Sample email text<img src=\"cid:imageId\" />";

            AlternateView htmlView = AlternateView.CreateAlternateViewFromString(Body, null, "text/html");
            LinkedResource lr = new LinkedResource("myImage.jpg", "image/jpeg");
            lr.ContentId = "imageId";
            htmlView.LinkedResources.Add(lr);

            mail.AlternateViews.Add(htmlView);
            SmtpClient smtpClient = new SmtpClient();
            smtpClient.Send(mail);

Does anyone know why embedded images are not displayed on mobile clients? Better yet, how can I get the images to display correctly?

flag

53% accept rate

1 Answer

vote up -1 vote down

Most often the cause is the settings on the smart phone being set to prevent the downloading of email images by default. On most phones, the default behavior is that they have to download the images manually, usually by a button or setting in the email client, if they want to see the images attached to that particular email. It's the same setting I use in my desktop and laptop Outlook settings as well. For most email clients, it's a spam protection thing. For the phones, it's also to save bandwidth from unnecessary usage. You should never count on the clients always seeing the images by default.

link|flag
No, that's not the case for embedded images. The images arrive at the client with the images already attached. Users will not be requested by their clients to download the images. That's one of the benefits of embedding. Everything works beautifully and just how you would want it to and spam protection doesn't come into play. – Alison Oct 5 at 19:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.