View source code
Display the source code in std/net/isemail.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
Struct std.net.isemail.EmailStatus
This struct represents the status
of an email address
Properties
Name | Type | Description |
---|---|---|
domainPart
[get]
|
string |
The domain part of the email address, that is, the part after the @ sign. |
localPart
[get]
|
string |
The local part of the email address, that is, the part before the @ sign. |
status
[get]
|
string |
Returns a describing string of the status code
|
statusCode
[get]
|
EmailStatusCode |
The email status code
|
valid
[get]
|
bool |
Indicates if the email address is valid or not.
|
Methods
Name | Description |
---|---|
toString
|
Returns a textual representation of the email status
|
Authors
Dominic Sayers