views:

25

answers:

1

I want to send links like : http://www.geekinheels.com/storage/world_of_programming.jpg as emedded image. Is that possible.

+1  A: 

You need to change the src attribute of the img tag inside your HTML body to "cid:XXXXX", where XXXXX is some string/identifier, e.g. "world_of_programming.jpg".

After that add your image as an attachment with Content-ID equal to "XXXXX", e.g.

Content-ID: world_of_programming.jpg

and you're good to go.

liggett78