HELO is used to execute the HELO command and perform an initial handshake with an SMTP service.
Applicability
This content applies only to the Oracle-compatible mode of OceanBase Database.
Syntax
UTL_SMTP.HELO (
c IN OUT NOCOPY connection,
domain IN VARCHAR2)
RETURN reply;
UTL_SMTP.HELO (
c IN OUT NOCOPY connection,
domain IN VARCHAR2);
Parameters
| Parameter | Description |
|---|---|
| c | The SMTP connection. |
| domain | The domain name of the sending host, which is used for identification. |
Return value
| Return value | Description |
|---|---|
| reply | The reply to the command. If multiple replies are received, the last reply is returned. |
Considerations
The expected response is a message starting with 250, indicating that the SMTP server is ready to establish communication.