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!