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
- IsError
- PKey.Read
- PKey.Release
- SendMail.CreateEmail
- SendMail.GetSource
- SendMail.PrepareCURL
- X509.Read
- X509.Release
Release notes
- Version 11.4
- Added SendMail.Sign function to send S/MIME signed emails.
Blog Entries
- New in MBS FileMaker Plugin 11.4
- Neues MBS FileMaker Plugin 11.4
- MBS FileMaker Plugin 11.4 - More than 6500 Functions In One Plugin
- MBS FileMaker Plugin, version 11.4pr4
- MBS FileMaker Plugin, version 11.4pr3
This function checks for a license.
Created 22nd August 2021, last changed 17th March 2022