I am sending out SMTP emails with an HTML body that includes some embedded images using Base64Strings. The emails and images look perfect when viewing in-house in Outlook. When the emails are sent to an external account such as Gmail the images don’t display and all you can see in the Base64 strings. Is there a simply fix, or a better way to embed images into a HTML email body?
So here are the steps I go through to get the images embedded.
Load the location of the image into a string variable
Create a Byte Array variable and set as follows: System.IO.File.ReadAllBytes(TickImage)
Create a String variable for the Base64 string as follows: Convert.ToBase64String(TickImageByteArray)
Create a String variable for the HTML Tag as follows: “<img src=”“data:image/png;base64,” + TickImageBase64String + “”" width=““72"” height=”“72"”/>"
There are 2 images, a Tick and a Cross which are processed the same above. I then determine based on data which one to display and copy that HTML Tag into a final String Variable called OverallResultImage. This is then added to the Email Body as follows: