TimeStampFrom Property
Gets the name and/or IP address of the source host from which the message was sent.

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

Property Value

Type: String
Contains the sender's mail server domain name and/or IP address as specified in the Received header, or an empty string if from field is missing in the Received header.
Remarks

Typical examples of this property value: mail.domain.com ([1.2.3.4]), MYSERVER (mail.domain.com [1.2.3.4]), etc. There is no strict format for this value.

This value does not necessarily denote the original host which sent this message. Instead, it contains the name of the host which delivered the message to the host which added this time stamp to the message. If the delivery chain consists of many servers, From server simply denotes the previous link in the chain.

Examples
The example is available in TimeStamp topic.
See Also