Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2   11.3   11.4    Statistic    FMM    Blog  

SendMail.AddRecipient

Adds a recipient.

Component Version macOS Windows Linux Server iOS SDK
SendMail 4.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "SendMail.AddRecipient"; EmailID; Type; Email { ; Name } )   More

Parameters

Parameter Description Example Flags
EmailID The email reference number obtained using SendMail.CreateEmail function. $EmailID
Type The type of recipient. Can be TO, BCC, CC or ReplyTo. "CC"
Email The email address of the recipient. "test@mbsplugins.de"
Name Optional the name of the recipient. If this name contains special characters, it will be automatically encoded with UTF-8. "John Miller" Optional

Result

Returns OK or error.

Description

Adds a recipient.
This function can be used easily if the type is also a field in your database.
As an alternative you can of course also use SendMail.AddTo, SendMail.AddReplyTo, SendMail.AddCC or SendMail.AddBCC.

You can call this in a loop several times to add as many recipients as needed.
Please make sure the email addresses are syntactically correct.

Examples

Add email address for a carbon copy:

MBS( "SendMail.AddRecipient"; $email; "CC"; "test@mbsplugins.de"; "Bob Miller")

See also

Blog Entries

FileMaker Magazin

Created 5th September 2014, last changed 9th September 2019


SendMail.AddHeader - SendMail.AddReplyTo

Feedback: Report problem or ask question.