Lines Matching refs:email

2  * Validates an email address according to RFCs 5321, 5322 and others.
34 * Check that an email address conforms to RFCs 5321, 5322 and others.
38 * valid email address.
43 * email = The email address to check
59 * An $(LREF EmailStatus), indicating the status of the email address.
61 EmailStatus isEmail(Char)(const(Char)[] email, CheckDns checkDNS = No.checkDns,
119 foreach (ref i, e ; email)
121 token = email.get(i, e);
187 if ((token == Token.cr) && ((++i == email.length) || (email.get(i, e) != Token.lf)))
325 if (token == Token.cr && (++i == email.length || email.get(i, e) != Token.lf))
483 if (token == Token.cr && (++i == email.length || email.get(i, e) != Token.lf))
524 if (token == Token.cr && (++i == email.length || email.get(i, e) != Token.lf))
618 if (token == Token.cr && (++i == email.length || email.get(i, e) != Token.lf))
667 if (++i == email.length || email.get(i, e) != Token.lf)
1065 `RFC 3490: "unless the email standards are revised to invite the use of IDNA for local parts, a domain label`~
1066 ` that holds the local part of an email address SHOULD NOT begin with the ACE prefix, and even if it does,`~
1282 /// Represents the status of an email address
1293 /// Self aliases to a `bool` representing if the email is valid or not
1298 * valid = indicates if the email address is valid or not
1299 * localPart = the local part of the email address
1300 * domainPart = the domain part of the email address
1311 /// Returns: If the email address is valid or not.
1317 /// Returns: The local part of the email address, that is, the part before the @ sign.
1323 /// Returns: The domain part of the email address, that is, the part after the @ sign.
1329 /// Returns: The email status code
1341 /// Returns: A textual representation of the email status
1488 * An email status code, indicating if an email address is valid or not.
1515 * warnings is considered invalid. A specific email status code will be
1522 * is performed. Returned email status code will be either Error or Valid.
1723 // The local part of the email address, that is, the part before the @ sign
1726 // The domain part of the email address, that is, the part after the @ sign.