Simon_Weaver
Simon_Weaver

Reputation: 146020

Embed images or link to external images in emails in legitimate mass mailings

It turns out to be quite easy to send emails with .NET that use embedded images. By embedding I mean actually include the image as an MIME attachment.

I'm just trying to figure out whether or not I should embed images as resources for mass mailings (to opt-in / existing customers). Alternatively I would just reference images with a <img src>

Reasons for embedding images

Reasons for not embedding images (IMG src attribute pointing to an external site)

I'm sure there are more reasons.

I'm most concerned about spam related issues. Curious for anybody's input

Upvotes: 12

Views: 3506

Answers (2)

tvgemert
tvgemert

Reputation: 1486

You can at least check the spam-score of the email you've created. Checking two versions with and without embedded images. A lot of mailing applications (mass-mailers) offer some sort of spam check functionality. Or you could use a tool like: http://spamcheck.postmarkapp.com/

Upvotes: 1

Jeremy
Jeremy

Reputation: 3951

Try base64 embedding?

http://yellowgreen.de/image-to-base64-string-encoder

Upvotes: 0

Related Questions