6

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

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
Pradip
  • 315
  • 1
  • 4
  • 12

1 Answers1

1

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.

Nicole Merlin
  • 196
  • 1
  • 5