How to add Image in Email body using MapIEX

Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-01-19 11:27 PM
I want to add image in the body of an email, I have an idea that it can be done using HTML code. Can anyone help me in this one.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-01-19 11:33 PM
Please refer to this thread: https://community.blueprism.com/communities/community-home/digestviewer/viewthread?GroupId=97&MID=2748 Additionally, here's the code stage I used.
Inputs:
FilePath - Text
Outputs:
Base64 - Text
Dim imageArray As Byte() = System.IO.File.ReadAllBytes(FilePath) Dim base64ImageRepresentation As String = Convert.ToBase64String(imageArray) Base64 = base64ImageRepresentation
