Send HTML Email with Embedded Image for iOS

Hello,

I am trying to send HTML email with embedded image in email body. I am attaching image to email and with HTML I am referring to attachment so it is shown in email body. The code below works fine with Outlook, unfortunately it is not working for iOS Mail.

Tried Base64 encoding, but for larger images decoding does not work.

Maybe someone has faced same issue and knows how to solve it?

HTML:

"<html>
<head>
</head>
<body>
<img src=""cid:" & [Picture File Name] & """>
</body>
</html>"
 

Attachments

  • Create HTML Body.PNG
    7.9 KB · Views: 37
  • MAPIEX Send Email.PNG
    18 KB · Views: 32
Top