MailBee.NET Objects 7.1

EmailAddress.GetAccountNameFromEmail Method 

Gets the account name of the specified e-mail address as a string.

public static string GetAccountNameFromEmail(
   string email
);

Parameters

email
The e-mail address as a string.

Remarks

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

To get account name part or domain part of the existing EmailAddress object, the developer can use GetAccountName or GetDomain methods.

Example

This sample extracts the account and domain names from the specified e-mail address.

[C#]
// To use the code below, import MailBee namespaces at the top of your code.
using MailBee;
using MailBee.Mime;

Console.WriteLine(EmailAddress.GetAccountNameFromEmail("user1@domain.com"));
Console.WriteLine(EmailAddress.GetDomainFromEmail("user1@domain.com"));
[Visual Basic]
' To use the code below, import MailBee namespaces at the top of your code.
Imports MailBee
Imports MailBee.Mime

Console.WriteLine(EmailAddress.GetAccountNameFromEmail("user1@domain.com"))
Console.WriteLine(EmailAddress.GetDomainFromEmail("user1@domain.com"))

See Also

EmailAddress Class | MailBee.Mime Namespace | GetAccountName | GetDomainFromEmail