I'm trying to include an image in HTML email, I'm sending information by encoding the image to base64 and using the img
tag.
The HTML:
<img alt="Embedded Image" height="128" width="128" `src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD....snip..." />`
I can't see the image
in my mail, also I found the following article which reflect the issue.
So how can I send the image into the HTML?
Note: I can't use external links since we have some restrictions.