Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to send image in newsletter?

can anyone tell me how can i send images as main body part in newsletter. how can i add any image from backend such that when i send a newsletter to the subscribers the image i want to show goes as main body part of the mail.

actually what i am saying is i have a form in which i can enter text and that text goes well in newsletter. now i want to add images in the form as well so that i don't need to write anything and only image will go in the mail as main body part of mail.

Thank you so much. you guys have been very supportive to me.

like image 523
Rachel Avatar asked Jun 28 '10 11:06

Rachel


1 Answers

If your newsletter is in HTML format, simply link to the live images that are on a server.

If you don't have your own server, simply host the images in any sort of free images hosting i.e. (imageshack.us) and on the body of your emails add:

<img src="http://imageshack.us/myimage.png">

And when the user opens the email, the images will load from the server.

As long as the email is multi-part (as previously suggested), any users that "can't read" HTML, will get the text version, which can have "hard-links" to the images on your live server.

Hope this helps you

like image 168
Marcos Placona Avatar answered Sep 28 '22 06:09

Marcos Placona