C# Класс JustPressPlay.Utilities.Email

Показать файл Открыть проект

Открытые методы

Метод Описание
Send ( List to, String subject, String body, bool htmlEmail = false, List cc = null, List bcc = null ) : void

Sends an email

Send ( String to, String subject, String body, bool htmlEmail = false, List cc = null, List bcc = null ) : void

Sends an email

Описание методов

Send() публичный статический Метод

Sends an email
public static Send ( List to, String subject, String body, bool htmlEmail = false, List cc = null, List bcc = null ) : void
to List The list of recipients
subject String The subject of the email
body String The body of the email, which may contain HTML
htmlEmail bool Should the email be flagged as "html"?
cc List A list of CC recipients
bcc List A list of BCC recipients
Результат void

Send() публичный статический Метод

Sends an email
public static Send ( String to, String subject, String body, bool htmlEmail = false, List cc = null, List bcc = null ) : void
to String The single recipient
subject String The subject of the email
body String The body of the email, which may contain HTML
htmlEmail bool Should the email be flagged as "html"?
cc List A list of CC recipients
bcc List A list of BCC recipients
Результат void