C# Class JustPressPlay.Utilities.Email

Datei anzeigen Open project: RIT-MAGIC/JustPressPlay

Public Methods

Method Description
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

Method Details

Send() public static method

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
return void

Send() public static method

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
return void