Click or drag to resize

Smtp.TestMessageEnvelopeAsync Method (String, String)

Sends message envelope to the SMTP server. Doesn't send or verify message contents. It can be used to verify if SMTP server accepts sender and recipient addresses.

Namespace:  Limilabs.Client.SMTP
Assembly:  Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax
public Task<ISendMessageResult> TestMessageEnvelopeAsync(
	string from,
	string to
)

Parameters

from
Type: System.String
From address (FROM).
to
Type: System.String
To address (RCPT TO).

Return Value

Type: Task<ISendMessageResult>
Result of the sending operation. You can examine Status property to check if the operation succeed.
See Also