How do I get images to be displayed when using php mailer.
If this is possible??
When the image is data:image as below
<img style=“width: 400px;” src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AA
How do I get images to be displayed when using php mailer.
If this is possible??
When the image is data:image as below
<img style=“width: 400px;” src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AA
In my experience many email clients do not render data:image base64 images reliably. With PHPMailer it is usually better to use addEmbeddedImage() and reference it with a CID in the tag. That tends to work more consistently across Gmail, Outlook, and other clients.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.