I'm constructing HTML emails in PHP with Zend_Mail and I'd like to embed/attach/whatever some images in such a way that Gmail will automatically display them without prompting the user. How can I do this?
|
You can't without the user approving your imagery. It's an anti-spam/ anti-tracking technique that has to be off by default to work. You can make Gmail display images (embedded into content) with authenticating emails sent. You just make sure you have a correct SPF record, and 1024 bit DKIM signed the message. Then gmail shows embedded images within content. |
|||||||||||
|
|
Google's Bulk Sender Guidelines say that Gmail will automatically show images for senders who have authenticated their domain:
Google offers a page to learn more about email authentication. |
|||
|
|
|
As of my knowledge, This is not possible. Gmaill will hide the images initially. If the Use enables (by clicking " |
|||
|
|
<img>tag with an absolute reference to the URL of the file. They'll at least be displayable, then if the recipient decides that you're a trusted sender, they can choose to have google display the images automatically. – Matt Jul 30 '12 at 19:48