MailMessageXMailer Property
Gets or sets the details about the software which was used to create the message.

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

Property Value

Type: String
A string containing the information about the software which was used to create the message. By default, it's MailBee.NET N, where N - is Version.
Examples
This sample loads the message from .EML file and displays the details of the software, which were used to create the message.
using System;
using MailBee;
using MailBee.Mime;

class Sample
{
    static void Main(string[] args)
    {
        // Load the message from file.
        MailMessage msg = new MailMessage();
        msg.LoadMessage(@"C:\Docs\TestMail.eml");

        // Show the details of software which was used
        // to compose the message.
        Console.WriteLine("The mailer is " + msg.XMailer);
    }

}
See Also