SmtpAuthPopBeforeSmtpAsync Method |
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Task<bool> AuthPopBeforeSmtpAsync(
string pop3ServerName,
int pop3ServerPort,
string pop3AccountName,
string pop3Password
)
Public Function AuthPopBeforeSmtpAsync (
pop3ServerName As String,
pop3ServerPort As Integer,
pop3AccountName As String,
pop3Password As String
) As Task(Of Boolean)
Parameters
- pop3ServerName
- Type: SystemString
The host name or IP address of the POP3 server. - pop3ServerPort
- Type: SystemInt32
The port on which POP3 service is running. - pop3AccountName
- Type: SystemString
The user account name on the POP3 server. - pop3Password
- Type: SystemString
The user account password on the POP3 server.
Return Value
Type:
TaskBooleanA task that represents the asynchronous operation.
The value of
TResult parameter is
true if the method succeeds; otherwise,
false.
Exceptions See Also