Pradip
Pradip

Reputation: 316

Issue with Image which is send Via Mail in iOs default mail app & outlook

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

Answers (1)

Nicole Merlin
Nicole Merlin

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

Related Questions