mscorlib(4.0.0.0) API with additions
SmtpStatusCode.cs
1 namespace System.Net.Mail
2 {
4  public enum SmtpStatusCode
5  {
7  SystemStatus = 211,
9  HelpMessage = 214,
11  ServiceReady = 220,
15  Ok = 250,
21  StartMailInput = 354,
23  ServiceNotAvailable = 421,
25  MailboxBusy = 450,
29  InsufficientStorage = 452,
31  ClientNotPermitted = 454,
33  CommandUnrecognized = 500,
35  SyntaxError = 501,
39  BadCommandSequence = 503,
45  MailboxUnavailable = 550,
53  TransactionFailed = 554,
55  GeneralFailure = -1
56  }
57 }
A Help message was returned by the service.
The transaction could not occur. You receive this error when the specified SMTP host cannot be found.
The user mailbox is not located on the receiving server; the server forwards the e-mail.
The SMTP service cannot complete the request. This error can occur if the client's IP address cannot ...
The SMTP service is closing the transmission channel.
SmtpStatusCode
Specifies the outcome of sending e-mail by using the T:System.Net.Mail.SmtpClient class.
The destination mailbox was not found or could not be accessed.
The client was not authenticated or is not allowed to send mail using the specified SMTP host.
The destination mailbox is in use.
The SMTP service does not implement the specified command parameter.
The SMTP service is ready to receive the e-mail content.
Specifies that the sequence of commands is not in the correct order.
The message is too large to be stored in the destination mailbox.
The syntax used to specify a command or parameter is incorrect.
Specifies that the command is not implemented by the FTP server.
The user mailbox is not located on the receiving server. You should resend using the supplied address...
The SMTP server is configured to accept only TLS connections, and the SMTP client is attempting to co...
Specifies that the service is not available.
The SMTP service does not have sufficient storage to complete the request.
The email was successfully sent to the SMTP service.
The syntax used to specify the destination mailbox is incorrect.
The SMTP service does not recognize the specified command.
The specified user is not local, but the receiving SMTP service accepted the message and attempted to...
A system status or system Help reply.