Reputation: 316
I am trying to send Email from node.js API using "node-ses". I attached image url code inside mail body.
<img src="' + host + '/images/ic_comscope.png" height="40">
It works completely inside Gmail & browser, But having issue in iOs default mail app & outlook.
note: i don't want suggestion related to attachments Give any other solution
Upvotes: 6
Views: 153
Reputation: 196
You could try adding a width to the image instead (OR as well as) the height. E.g. remove height="40"
and add style="height: 40px; width: ___px"
. Specifying it in pixels in a style is better for Outlook on Windows if users have different display scaling enabled.
Upvotes: 1