'Sender' field, mailbox of the agent responsible for the actual transmission. If 'Sender' is null use From property.

Namespace: Limilabs.Mail
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public MailBox Sender { get; set; }
Visual Basic
Public Property Sender As MailBox
	Get
	Set
Visual C++
public:
property MailBox^ Sender {
	MailBox^ get ();
	void set (MailBox^ value);
}

Remarks

'Sender' field is not required if 'From' property contains only one MailBox. 'Sender' property is filled when message is from more than one person ('From' contains more than one mailbox). In such case it is needed to provide information which mailbox is responsible for the actual transmission.

See Also