SmtpAuthPopBeforeSmtpAsync Method

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Task<bool> AuthPopBeforeSmtpAsync(
	string pop3ServerName,
	int pop3ServerPort,
	string pop3AccountName,
	string pop3Password
)

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: TaskBoolean
A task that represents the asynchronous operation. The value of TResult parameter is true if the method succeeds; otherwise, false.
Exceptions
ExceptionCondition
MailBeeExceptionAn error occurred and ThrowExceptions is true.
See Also