C# Class org.GraphDefined.Vanaheimr.Hermod.Mail.EMailEnvelop

An e-mail envelop.
Exibir arquivo Open project: Vanaheimr/Hermod Class Usage Examples

Protected Properties

Property Type Description
_Mail EMail

Public Methods

Method Description
EMailEnvelop ( AbstractEMailBuilder MailBuilder ) : System

Create a new e-mail envelop based on the given e-mail builder data.

EMailEnvelop ( EMail EMail ) : System

Create a new e-mail envelop based on the given e-mail.

EMailEnvelop ( EMailAddressList MailFrom, EMailAddressList RcptTo, AbstractEMailBuilder MailBuilder, IPSocket RemoteSocket = null ) : System

Create a new e-mail envelop based on the given sender and receiver addresses and the e-mail builder data.

EMailEnvelop ( EMailAddressList MailFrom, EMailAddressList RcptTo, EMail EMail, IPSocket RemoteSocket = null ) : System

Create a new e-mail envelop based on the given sender and receiver addresses and the e-mail builder data.

Method Details

EMailEnvelop() public method

Create a new e-mail envelop based on the given e-mail builder data.
public EMailEnvelop ( AbstractEMailBuilder MailBuilder ) : System
MailBuilder AbstractEMailBuilder An e-mail builder.
return System

EMailEnvelop() public method

Create a new e-mail envelop based on the given e-mail.
public EMailEnvelop ( EMail EMail ) : System
EMail EMail An e-mail.
return System

EMailEnvelop() public method

Create a new e-mail envelop based on the given sender and receiver addresses and the e-mail builder data.
public EMailEnvelop ( EMailAddressList MailFrom, EMailAddressList RcptTo, AbstractEMailBuilder MailBuilder, IPSocket RemoteSocket = null ) : System
MailFrom EMailAddressList The sender(s) of the e-mail.
RcptTo EMailAddressList The receiver(s) of the e-mail.
MailBuilder AbstractEMailBuilder An e-mail builder.
RemoteSocket IPSocket The remote socket of the incoming SMTP connection.
return System

EMailEnvelop() public method

Create a new e-mail envelop based on the given sender and receiver addresses and the e-mail builder data.
public EMailEnvelop ( EMailAddressList MailFrom, EMailAddressList RcptTo, EMail EMail, IPSocket RemoteSocket = null ) : System
MailFrom EMailAddressList The sender(s) of the e-mail.
RcptTo EMailAddressList The receiver(s) of the e-mail.
EMail EMail An e-mail.
RemoteSocket IPSocket The remote socket of the incoming SMTP connection.
return System

Property Details

_Mail protected_oe property

protected EMail,org.GraphDefined.Vanaheimr.Hermod.Mail _Mail
return EMail