Gets or sets the name which is displayed with the e-mail address.
A string containing the display name of the current e-mail address. The default value is an empty string.
For instance, if the full e-mail address string is Support Team <support@domain.com> (My Company), the Support Team is a display name.
This sample creates a new instance of the EmailAddress object and displays the full address (including display name).
[C#] // To use the code below, import MailBee namespaces at the top of your code. using MailBee; using MailBee.Mime; EmailAddress adr = new EmailAddress(); // Add display name. adr.DisplayName = "John Doe"; // Add e-mail address. adr.Email = "doe@domain.com"; // Add remarks. adr.Remarks = "ABC Company"; // Show entire e-mail address string. Console.WriteLine(adr.ToString());
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code. Imports MailBee Imports MailBee.Mime ' Create new EmailAddress object. Dim adr As New EmailAddress ' Add display name. adr.DisplayName = "John Doe" ' Add e-mail address. adr.Email = "doe@domain.com" ' Add remarks. adr.Remarks = "ABC Company" ' Show entire e-mail address string. Console.WriteLine(adr.ToString())
EmailAddress Class | MailBee.Mime Namespace | AsString | Email