MailBee.NET Objects 7.1

EmailAddress.GetDomain Method 

Gets the domain name of the e-mail address.

public string GetDomain();

Return Value

A string containing the domain name of the e-mail address.

Remarks

For instance, the domain value will be returned for the account@domain.com e-mail. To get the account name, the developer should use the GetAccountName method.

Example

This sample creates a new instance of the EmailAddress object and displays the domain name of this address.

[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 = "jdoe@domain.com";

// Add remarks.
adr.Remarks = "ABC Company";

// Show domain name string.
Console.WriteLine(adr.GetDomain());
[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 = "jdoe@domain.com"

' Add remarks.
adr.Remarks = "ABC Company"

' Show domain name string.
Console.WriteLine(adr.GetDomain())

See Also

EmailAddress Class | MailBee.Mime Namespace | GetAccountName