Reputation: 813
I noticed that almost all email messages I get do not embed images, but link them from the http instead (and they get blocked by default of course). I'm sending HTML email for my service and can easily embed images to create better visual experience. Is there particular reason not do so? Why everybody else is linking instead of embedding?
Upvotes: 46
Views: 20551
Reputation: 31
Adding images via link is good choice . Rather than embed them . Because embedding increases the email size. While adding the image URL to mail , Make sure the host of image is safe or trustworthy. If you use images from blacklisted domains. Your mail may be marked as spam.
Upvotes: -2
Reputation: 1584
Interestingly, I've noticed GMail marking images as spam if they include links to images. The same email with an image embedded does not trip gmail's spam filter.
Here's a post on the topic where someone else noticed the same thing:
http://blog.whitesites.com/Trick-to-getting-past-Gmail-Spam-Filters__634486187705400390_blog.htm
Upvotes: 6
Reputation: 20722
Many mass email services also link the images for another reason: it allows them to track who has opened the email.
Upvotes: 16
Reputation: 74588
A few possible considerations:
Upvotes: 21
Reputation: 3060
linking naturally saves bandwidth which if your service legitimately sends many emails is certainly an important consideration. I agree though embedding images does create a better user experience. I would embed images if you know your demographic aren't going to filter the images which IMHO looks worse than linked images.
Another consideration is the use of the images. Are you going to include them as incidental to the content ie. could they not be included as links at the end? In your case I suspect not, so we're back to bandwidth and filtration considerations.
Hope this helps.
Upvotes: 2
Reputation: 1590
Because by embedding the images in the email, the email size gets a lot larger, uses more bandwidth for you to send it, and more for them to receive it. If the images are important to the email's purpose then embed them, if they are to just make it look good then link them.
Upvotes: 33