Possible Duplicate:
php image display without download in mail
I have a PHP web application which create wishes card and send them with the PHP mail()
function.
The wishes card is build with HTML and part of the card are illustrations, those illustrations use jpg images inside an IMG
tag. The images are hosted on a server so images paths use a complete link (like http:/domain.com/img.jpg
).
When the card is received, for exemple with thunderbird, it says images are blocked and the user has to click on a button to show the images. I understand it's a security mesure. That's still annoying for a whishes card which is meant to be discover with its illustrations.
So, i'm looking for any though, any light, in a way to prevent email clients from blocking images.
Thanks.