I am trying to send HTML email with inline image but the image is not coming, for some system, it's working fine and image is showing but for some it's not coming, Check the attached image for reference.
And I also trying bypassing image using data uri
<td>
<img style="display:block;" src ="{{ image_tag }}" alt="check"
width="100%"></p>
</td>
data_uri= base64.b64encode(open('C://Users//Desktop//work.png',
'rb').read()).decode('utf-8')
image_tag = "data:image/png;base64,"+ data_uri
with open('C://Users//Desktop//final.html', encoding='utf-8-sig') as myfile:
outerdata=myfile.read()
template = Template(outerdata)
finalpage=template.render(image_tag = image_tag)