How to encode outlook email to base 64? Do we have any activity which does it? But I couldn't find any package related to email encoding

Hi Friends,

Need quick help with encoding email outlook to base 64 using studio.

Thanks,
Farooq

HI @Mohammed_Umar_Farooq

Welcome to UiPath community

check out the video link

Check out this component

Regards
Gokul

Hi,

The following post will help you.

Please note that it might be necessary which character encoding should be used.
(The above post is for UTF8)

Regards,

1 Like

Hi Gokul,

Thanks for the quick response, the video referred by you is useful to encode the image in the email body.

But could you give suggestion to encode & decode entire email file in .msg extension.

Thanks,
Farooq

Have you check this activity in the marketplace @Mohammed_Umar_Farooq

Hi Gokul,

I have used the package mentioned by you, but outlook email which is saved in .msg/.eml format is not an image to be used. Please correct me if I’m wrong, any thoughts on it plz @Gokul001

HI,

Do you need to encode msg/eml file to base64 string? If so the following expression will help you.

arrByte =System.IO.File.ReadAllBytes("message.msg")

Then

strBase64 = System.Convert.ToBase64String(arrByte)

Regards,

Hi Yoichi,

Thanks for your suggestions, let me do a try and get back to you.

Regards,
Farooq

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.