Gets mailbox of the agent responsible for the actual transmission ('Sender' header). If 'Sender' is empty you should use From property.

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

Syntax

C#
public MailBox Sender { get; private set; }
Visual Basic
Public Property Sender As MailBox
	Get
	Private Set
Visual C++
public:
property MailBox^ Sender {
	MailBox^ get ();
	private: 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