user3408005
user3408005

Reputation: 73

Problems with responsive email templates

I recently made a responsive email template. I have img links in it that calls images from my local hard drive. When I send the email template to an email address, I can only seem to send the html file that contains the codes, and not the image files as well. This makes the images to not get loaded. Is there a way for these images to be somehow combined into one file, instead of being in two groups of files (html and a folder of images)?

Thank you.

Upvotes: 1

Views: 334

Answers (3)

Jomin George Paul
Jomin George Paul

Reputation: 571

i hope u can use any server for the images,

its unable to load images from local server while sending the mail

https://cloudinary.com/ is one of best and cheap server available and flexible too

http://res.cloudinary.com/cartoon-mango/image/upload/v1453296305/Urdoorstep/20116/2.png

Upvotes: 0

John
John

Reputation: 12193

There are only 2 ways to include images in html email.

  1. Host the images online (http://www.yoursite.com/link/to/yourimage.jpg for example) - This is industry standard. Users will have to load the images if diplay images is not set by default, or the sender is not in your safe list.
  2. Embed the image using Base64 - This makes your email slow to load, but the image will load by default.

Upvotes: 1

littleswany
littleswany

Reputation: 483

You could host the images online and use the links in the html email. Hope that helps!

Upvotes: 1

Related Questions