TestSendResult Enumeration |
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public enum TestSendResult
Public Enumeration TestSendResult
Members
| Member name | Value | Description |
---|
| OK | 0 |
Successful completion.
|
| NoSender | 1 |
No sender was specified.
|
| NoRecipients | 2 |
No recipients were specified.
|
| BadSender | 3 |
Sender e-mail address was refused by the SMTP server.
|
| BadRecipient | 4 |
Recipient e-mail was refused by the SMTP server.
|
| NoAcceptedRecipients | 5 |
No recipients have been accepted by the SMTP server.
|
| NoCredentials | 6 |
ESMTP or POP-before-SMTP authentication failed because
no user account name and/or password was provided.
|
| NoSupportedAuth | 7 |
No suitable ESMTP authentication method is supported by the SMTP server.
|
| BadAuthMethod | 8 |
The requested authentication method is not supported by the SMTP server.
|
| BadCredentials | 9 |
ESMTP or POP-before-SMTP authentication failed because
invalid user account name and/or password was provided.
|
| NegativeSmtpResponse | 10 |
The SMTP server returned negative response.
|
| NegativePop3Response | 11 |
The POP3 server returned negative response during POP-before-SMTP authentication.
|
| SmtpResolveHostError | 12 |
The SMTP server name could not be resolved into IP address.
|
| SmtpConnectionError | 13 |
There was connection error with the SMTP server.
|
| Pop3ResolveHostError | 14 |
The POP3 server name could not be resolved into IP address. POP-before-SMTP authentication
could not start.
|
| Pop3ConnectionError | 15 |
There was connection error with the POP3 server during POP-before-SMTP authentication.
|
| NoDomainInRecipientEmail | 16 |
Recipient was specified as jdoe (or jdoe@) rather than jdoe@domain.com,
and LocalSmtpMXServerName is set to an empty string.
|
| NoMXRecord | 17 |
No MX or A records have been found for a recipient domain. This domain cannot accept mail.
|
| DnsProtocolError | 18 |
The DNS server responded with an error on DNS MX lookup query from MailBee.
|
| DnsConnectionError | 19 |
There was connection error with the DNS server.
|
| UnknownError | 20 |
Other error.
|
See Also