Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

SendMail.Sign

Signs the email.

Component Version macOS Windows Linux Server iOS SDK
SendMail 11.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "SendMail.Sign"; EmailID; X509Ref; PKeyRef )   More

Parameters

Parameter Description Example
EmailID The email reference number obtained using SendMail.CreateEmail function. $EmailID
X509Ref The reference to the X509 certificate. $cert
PKeyRef The reference to the private key. $pkey

Result

Returns OK or error.

Description

Signs the email.
Wraps email source with S/Mime signature.
Please make sure you assemble the email before as doing changes later will remove the signature.

After signing, you can use SendMail.PrepareCURL or SendMail.GetSource.

Examples

Sign an email:

Set Variable [ $cert ; Value: MBS( "X509.Read"; EMail::Certificate ) ]
Set Variable [ $key ; Value: MBS( "PKey.Read"; EMail::PrivateKey ) ]

Set Variable [ $r ; Value: MBS("SendMail.Sign"; $EmailID; $cert; $key) ]
If [ MBS("IsError") ]
    Show Custom Dialog [ "Failed to sign email" ; $r ]
End If

Set Variable [ $r ; Value: MBS( "PKey.Release"; $key ) ]
Set Variable [ $r ; Value: MBS( "X509.Release"; $cert ) ]

See also

Release notes

  • Version 11.4

Blog Entries

This function checks for a license.

Created 22nd August 2021, last changed 17th March 2022


SendMail.SetSubject - SerialPort.AvailableBytes