Output from parseEmailAddress.
Note that parseEmailAddress will return undefined instead of this if its input is not a valid email address.
undefined
The "domain" or "address" part of the email address. (Everything to the right of the unquoted @.)
@
'example.org' from 'simple@example.org' Copy
'example.org' from 'simple@example.org'
The entire original email address.
'simple@example.org' from 'simple@example.org' Copy
'simple@example.org' from 'simple@example.org'
The "user" or "local" part of an email address. (Everything to the left of the unquoted @.)
'simple' from 'simple@example.org' Copy
'simple' from 'simple@example.org'
Output from parseEmailAddress.
Note that parseEmailAddress will return
undefined
instead of this if its input is not a valid email address.