I have a Symfony project where I have to send email so I use Swiftmailer
to do it. Inside my email, I have an image encoded in base64 but in the email the image is not displaying (I have actually the alt
)... The base64
disapear but I don't know why and I don't find similar issues.
Here is my code:
<img alt="Les Cannelines"
src="data:image/png;base64,iVBORw0KG(...)"
style="height: 50px;">
And here is what I have in the code inspector:
Thanks for your help