SmtpSubmittingMessageToPickupFolderEventArgsActualSenderEmail Property
Gets or sets the e-mail address of the sender of the mail message.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string ActualSenderEmail { get; set; }

Property Value

Type: String
The pure e-mail address (user@domain.com, i.e. without display name or remarks) of the message sender.
Remarks

Since MailBee allows sending messages from an e-mail address different from the address specified by From property, the developer can use ActualSenderEmail property to obtain the actual address the message is sent from.

The developer may also set this address to change the sender of the mail message. Passing a null reference (Nothing in Visual Basic) will make the message be sent from From address.

See Also