Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 2.21 KB

FreieWahl.Mail.md

File metadata and controls

38 lines (24 loc) · 2.21 KB

FreieWahl.Mail

Contents

IMailProvider type

Namespace

FreieWahl.Mail

Summary

Implementations of this interface support sending e-mails to one or more recipients

SendMail(recipientAddresses,subject,content,args) method

Summary

Sends a mail to one or more recipients. It also supports replacing placeholders in the content with values.

Returns

the result of the send process (true or false)

Parameters
Name Type Description
recipientAddresses System.Collections.Generic.List{System.String} the address(es) of the recipient(s)
subject System.String the mail subject
content System.String the mail content
args System.Collections.Generic.Dictionary{System.String,System.String} a list of placeholders and values. All occurences of the placeholder(s) in the content are replaces with the corresponding value(s).