C# 클래스 JustPressPlay.Utilities.Email

파일 보기 프로젝트 열기: RIT-MAGIC/JustPressPlay

공개 메소드들

메소드 설명
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