Contains the validation levels to be checked in the following order: Invalid, Syntax, Domain, SMTP, Account
[Visual Basic]
Public Enum ValidationLevel
[C#]
public enum ValidationLevel
Remarks
1. Email address is assumed "invalid" before checking. 2. Check whether the "syntax" is valid based on "ValidationExpression". 3. Check whether the "domain" server has MX records. 4. Check whether the "SMTP" server responds successfully. 5. Check whether the email "account" exists on the SMTP server.
Members
Member Name | Description |
---|---|
Invalid | Email address is assumed "invalid" before checking. |
Syntax | Check whether the "syntax" is valid based on "ValidationExpression". |
Domain | Check whether the "domain" server has MX records. |
SMTP | Check whether the "SMTP" server responds successfully. |
Account | Check whether the email "account" exists on the SMTP server. |
Requirements
Namespace: Karamasoft.WebControls.UltimateEmail
Assembly: UltimateEmail (in UltimateEmail.dll)
See Also
Karamasoft.WebControls.UltimateEmail Namespace