SendFailureThreshold Enumeration |
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public enum SendFailureThreshold
Public Enumeration SendFailureThreshold
Members
| Member name | Value | Description |
---|
| Default | 0 |
Use the same rules which are used when sending with Send
methods. In "send to SMTP relay server" mode, AllowRefusedRecipients
value is used. In direct send mode (through DNS MX lookup), failed recipients
would be always allowed.
|
| AnyRecipientsFailed | 1 |
Report error if at least one recipient is refused by the SMTP server, or any other
error occurred (such as failed to resolve a domain into IP address,
find SMTP MX server name for a domain, connect to an SMTP MX server, etc).
Other recipients are not tested (i.e. the method completes once a failed recipient
detected).
|
| AllRecipientsFailed | 2 |
Report error if all recipients of the message failed, and the message cannot be
sent to anybody of them.
|
See Also