SmtpServerIgnoreLoginFailure Property
Gets or sets whether the Smtp component should ignore ESMTP or POP-before-SMTP authentication error (if any) and still attempt to send the message.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool IgnoreLoginFailure { get; set; }

Property Value

Type: Boolean
The boolean value specifying whether the Smtp component should ignore ESMTP or POP-before-SMTP authentication error (if any) and still attempt to send the message. The default value is false.
Remarks
Since ESMTP and POP-before-SMTP authentication is not always necessary in order to send the message, the component can be told to try to send the message even if the authentication fails. Usually, SMTP relay servers allow unauthenticated users to send mail to local recipients only (i.e. to user@localdomain.com but not to user@remotedomain.com, provided that the SMTP relay server is somewhat like mail.localdomain.com).
See Also