How to Send Encrypted email using Send Exchange Mail Message activity

Hi,

I am looking into sending secure/encrypted email using Send Exchange Mail Message activity.
Is this possible? In sending email using Outlook, there is Sensitivity property and Send Securely in Outlook, but did not find it in Send Exchange Mail Message activity.

Thank you.

Regards,
Mae

@MaeHU
There is no option of sensitivity in exchange mail message activity
you can convert your email to secure string and then you can send.

(new System.Net.NetworkCredential(“”, “myString”)).SecurePassword

image

And to convert from SecureString to String, you can use:

(new System.Net.NetworkCredential(“”, mySecureString,)).Password

SecureString is obfuscated, not encrypted