Gets the response from the SMTP server.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
protected string ReadResponse()
Visual Basic
Protected Function ReadResponse As String
Visual C++
protected:
String^ ReadResponse()

Return Value

Smtp server response.

Examples

This example reads the response from the SMTP server.
CopySmtp ReadResponse
String response = mySmtp.ReadResponse();

CopySmtp ReadResponse
Dim response As String = mySmtp.ReadResponse()

See Also