1
votes

I'm developing an integration with Gmail API and PHP to send emails from my clients account vinculated with Gmail.

The problem is that Gmail is blocking all external images in message body (I want to track whenever sent email is opened by destinatary).

Example: <img src="http://my_domain.com/track_opening.php?GUID=XXXXX"> is replaced by <img> when the email is sent.

How can I track an email open when that message was sent using Gmail API?

Thanks!

1
We don't do "RESOLVED" or "SOLVED" in titles here if you've found the answer to your question. You can post an answer an accept it, or delete the question. On a side note I learned a new word today -- vinculatedj08691
Then, both of us have learned something today.Facundo Fasciolo

1 Answers

2
votes

Changing

Content-Transfer-Encoding: quoted-printable

to

Content-Transfer-Encoding: 8-bit

resolved the issue.