C# Class SympleLib.Email.Emailer

Inheritance: System.Net.Mail.MailMessage
Exibir arquivo Open project: sympletech/SympleLib

Public Methods

Method Description
Emailer ( ) : System.Linq

Create a new E-Mail Message

Emailer ( string to, string fromName, string fromEmail ) : System.Linq

Create a new E-Mail Message and Assign The To And From Values

GenerateBody ( ) : void

Generate The E-Mail Body using the Appropriate Template

GenerateSignature ( string name ) : void

Generate The Signature of the e-mail message

GenerateSignature ( string name, string position, string email ) : void

Generate The Signature of the e-mail message

SendMessage ( ) : void

Send The Message On It's Way

Method Details

Emailer() public method

Create a new E-Mail Message
public Emailer ( ) : System.Linq
return System.Linq

Emailer() public method

Create a new E-Mail Message and Assign The To And From Values
public Emailer ( string to, string fromName, string fromEmail ) : System.Linq
to string
fromName string
fromEmail string
return System.Linq

GenerateBody() public method

Generate The E-Mail Body using the Appropriate Template
public GenerateBody ( ) : void
return void

GenerateSignature() public method

Generate The Signature of the e-mail message
public GenerateSignature ( string name ) : void
name string
return void

GenerateSignature() public method

Generate The Signature of the e-mail message
public GenerateSignature ( string name, string position, string email ) : void
name string
position string
email string
return void

SendMessage() public method

Send The Message On It's Way
public SendMessage ( ) : void
return void