Idan
Idan

Reputation: 11

Send email as html with embedded images as background

I am trying to send email as html with embedded images (not attachment) and as background. I was trying to use Xpert Mailer but their documantion has small amount of information so I didnt succeed.

I was also trying to use Swiftmailer, with Swiftmailer I succeed to send email with embedded images but not as background.

Anyone has any clue how to send embbed images as background / has good PHP Email Sender?

Thanks!

Upvotes: 1

Views: 1936

Answers (2)

Idan
Idan

Reputation: 11

I found the answer. the problem was not my html or how I embedded the image. tha problem was that gmail doesnt support css property background / background-image and therefore it didnt work for me.

I had to use

Upvotes: 1

Sebastiaan van den Broek
Sebastiaan van den Broek

Reputation: 6331

Don't know about the apps you're using but this can be done by embedding the images in base64 format, looks like this:

<img src="data:image/gif;base64,R0lGODlhUAABLABLAMOREBASE64HERE">

Quick google search shows the following converter site: click

Upvotes: 1

Related Questions