Oracle® Database PL/SQL Packages and Types Reference 11g Release 2 (11.2) Part Number E10577-04 |
|
|
View PDF |
The UTL_SMTP
package is designed for sending electronic mails (emails) over Simple Mail Transfer Protocol (SMTP) as specified by RFC821.
See Also:
How to use the SMTP package to send email in Oracle Database Advanced Application Developer's GuideThis chapter contains the following topics:
Overview
Security Model
Types
Reply Codes
Exceptions
Rules and Limits
Examples
The protocol consists of a set of commands for an email client to dispatch emails to a SMTP server. The UTL_SMTP
package provides interfaces to the SMTP commands. For many of the commands, the package provides both a procedural and a functional interface. The functional form returns the reply from the server for processing by the client. The procedural form checks the reply and will raise an exception if the reply indicates a transient (400-range reply code) or permanent error (500-range reply code). Otherwise, it discards the reply.
Note that the original SMTP protocol communicates using 7-bit ASCII. Using UTL_SMTP
, all text data (in other words, those in VARCHAR2) will be converted to US7ASCII before it is sent over the wire to the server. Some implementations of SMTP servers that support SMTP extension 8BITMIME [RFC1652] support full 8-bit communication between client and server. The body of the DATA command may be transferred in full 8 bits, but the rest of the SMTP command and response should be in 7 bits. When the target SMTP server supports 8BITMIME extension, users of multibyte databases may convert their non-US7ASCII, multibyte VARCHAR2 data to RAW and use the WRITE_RAW_DATA subprogram to send multibyte data using 8-bit MIME encoding.
UTL_SMTP
provides for SMTP communication as specified in RFC821, but does not provide an API to format the content of the message according to RFC 822 (for example, setting the subject of an electronic mail).You must format the message appropriately. In addition, UTL_SMTP
does not have the functionality to implement an SMTP server for an email clients to send emails using SMTP.
This package is now an invoker's rights package and the invoking user will need the connect privilege granted in the access control list assigned to the remote network host to which he wants to connect.
Note:
For more information, see Managing Fine-grained Access to External Network Services in Oracle Database Security GuideThis is a PL/SQL record type used to represent an SMTP connection.
Syntax
TYPE connection IS RECORD ( host VARCHAR2(255), -- remote host name port PLS_INTEGER, -- remote port number tx_timeout PLS_INTEGER, -- Transfer time out (in seconds) private_tcp_con utl_tcp.connection, -- private, for implementation use private_state PLS_INTEGER -- private, for implementation use );
Fields
Table 232-1 CONNECTION Record Type Fields
Field | Description |
---|---|
|
The name of the remote host when connection is established. |
|
The port number of the remote SMTP server connected. |
|
The time in seconds that the |
|
Private, for implementation use only. You should not modify this field. |
|
Private, for implementation use only. You should not modify this field. |
Usage Notes
The read-only fields in a connection record are used to return information about the SMTP connection after the connection is successfully made with the OPEN_CONNECTION Functions
. Changing the values of these fields has no effect on the connection. The fields private_xxx
are for implementation use only. You should not modify these fields.
These are PL/SQL record types used to represent an SMTP reply line. Each SMTP reply line consists of a reply code followed by a text message. While a single reply line is expected for most SMTP commands, some SMTP commands expect multiple reply lines. For those situations, a PL/SQL table of reply records is used to represent multiple reply lines.
Syntax
TYPE reply IS RECORD ( code PLS_INTEGER, -- 3-digit reply code text VARCHAR2(508) -- text message ); TYPE replies IS TABLE OF reply INDEX BY BINARY_INTEGER; -- multiple reply lines
Fields
Table 232-2 REPLY, REPLIES Record Type Fields
Field | Description |
---|---|
|
The 3-digit reply code. |
|
The text message of the reply. |
The following is a list of the SMTP reply codes.
Table 232-3 SMTP Reply Codes
Reply Code | Meaning |
---|---|
|
System status, or system help reply |
|
Help message [Information on how to use the receiver or the meaning of a particular non-standard command; this reply is useful only to the human user] |
|
<domain> Service ready |
|
<domain> Service closing transmission channel |
|
Requested mail action okay, completed |
|
User not local; will forward to <forward-path> |
|
OK, pending messages for node |
|
OK, <messages> pending messages for node |
|
Start mail input; end with |
|
Octet-offset is the transaction offset |
|
<domain> Service not available, closing transmission channel (This may be a reply to any command if the service knows it must shut down.) |
|
Requested mail action not taken: mailbox unavailable [for example, mailbox busy] |
|
Requested action terminated: local error in processing |
|
Requested action not taken: insufficient system storage |
|
You have no mail. |
|
TLS not available due to temporary reason. Encryption required for requested authentication mechanism. |
|
Unable to queue messages for node |
|
Node |
|
Syntax error, command unrecognized (This may include errors such as command line too long.) |
|
Syntax error in parameters or arguments |
|
Command not implemented |
|
Bad sequence of commands |
|
Command parameter not implemented |
|
|
|
Must issue a |
|
Authentication mechanism is too weak. |
|
Encryption required for requested authentication mechanism. |
|
Requested action not taken: mailbox unavailable [for, mailbox not found, no access] |
|
User not local; please try <forward-path> |
|
Requested mail action terminated: exceeded storage allocation |
|
Requested action not taken: mailbox name not allowed [for example, mailbox syntax incorrect] |
|
Transaction failed |
The table lists the exceptions that can be raised by the interface of the UTL_SMTP
package. The network error is transferred to a reply code of 421- service not available.
Table 232-4 UTL_SMTP Exceptions
|
Raised when an invalid operation is made. In other words, calling API other than the WRITE_DATA Procedure, theWRITE_RAW_DATA Procedure or theCLOSE_DATA Function and Procedure after theOPEN_DATA Function and Procedure is called, or calling |
|
Raised when receiving a reply code in 400 range. |
|
Raised when receiving a reply code in 500 range. |
No limitation or range-checking is imposed by the API. However, you should be aware of the following size limitations on various elements of SMTP. Sending data that exceed these limits may result in errors returned by the server.
Table 232-5 SMTP Size Limitation
Element | Size Limitation |
---|---|
|
The maximum total length of a user name is 64 characters. |
|
The maximum total length of a domain name or number is 64 characters. |
|
The maximum total length of a reverse-path or forward-path is 256 characters (including the punctuation and element separators). |
|
The maximum total length of a command line including the command word and the |
|
The maximum total length of a reply line including the reply code and the |
|
The maximum total length of a text line including the |
|
The maximum total number of recipients that must be buffered is 100 recipients. |
The following example illustrates how UTL_SMTP
is used by an application to send e-mail. The application connects to an SMTP server at port 25 and sends a simple text message.
DECLARE c UTL_SMTP.CONNECTION; PROCEDURE send_header(name IN VARCHAR2, header IN VARCHAR2) AS BEGIN UTL_SMTP.WRITE_DATA(c, name || ': ' || header || UTL_TCP.CRLF); END; BEGIN c := UTL_SMTP.OPEN_CONNECTION('smtp-server.acme.com'); UTL_SMTP.HELO(c, 'foo.com'); UTL_SMTP.MAIL(c, 'sender@foo.com'); UTL_SMTP.RCPT(c, 'recipient@foo.com'); UTL_SMTP.OPEN_DATA(c); send_header('From', '"Sender" <sender@foo.com>'); send_header('To', '"Recipient" <recipient@foo.com>'); send_header('Subject', 'Hello'); UTL_SMTP.WRITE_DATA(c, UTL_TCP.CRLF || 'Hello, world!'); UTL_SMTP.CLOSE_DATA(c); UTL_SMTP.QUIT(c); EXCEPTION WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN BEGIN UTL_SMTP.QUIT(c); EXCEPTION WHEN UTL_SMTP.TRANSIENT_ERROR OR UTL_SMTP.PERMANENT_ERROR THEN NULL; -- When the SMTP server is down or unavailable, we don't have -- a connection to the server. The QUIT call will raise an -- exception that we can ignore. END; raise_application_error(-20000, 'Failed to send mail due to the following error: ' || sqlerrm); END;
Table 232-6 UTL_SMTP Package Subprograms
Subprogram | Description |
---|---|
Closes the SMTP connection, causing the current SMTP operation to abort |
|
Closes the data session |
|
Performs a generic SMTP command |
|
Performs initial handshaking with SMTP server after connecting |
|
Performs initial handshaking with SMTP server after connecting, with extended information returned |
|
Performs initial handshaking with SMTP server after connecting, with extended information returned |
|
Performs initial handshaking with SMTP server after connecting |
|
Sends |
|
Initiates a mail transaction with the server, the destination is a mailbox |
|
The null command |
|
Opens a connection to an SMTP server |
|
S |
|
Terminates an SMTP session and disconnects from the server |
|
Specifies the recipient of an e-mail message |
|
Terminates the current mail transaction |
|
Verifies the validity of a destination e-mail address |
|
Writes a portion of the e-mail message |
|
Writes a portion of the e-mail message with |
This procedure closes the SMTP connection, causing the current SMTP operation to abort. Use this procedure only to abort an email in the middle of the data session. To end the SMTP connection properly, use the QUIT Function and Procedure.
Syntax
UTL_SMTP.CLOSE_CONNECTION ( c IN OUT NOCOPY connection);
Parameters
The CLOSE_DATA
call ends the e-mail message by sending the sequence <CR><LF>.<CR><LF>
(a single period at the beginning of a line).
Syntax
UTL_SMTP.CLOSE_DATA ( c IN OUT NOCOPY connection) RETURN reply; UTL_SMTP.CLOSE_DATA ( c IN OUT NOCOPY connection);
Parameters
Table 232-8 CLOSE_DATA Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
Return Values
Table 232-9 CLOSE_DATA Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The calls to OPEN_DATA
, WRITE_DATA
, WRITE_RAW_DATA
and CLOSE_DATA
must be made in the right order. A program calls OPEN_DATA
to send the DATA
command to the SMTP server. After that, it can call WRITE_DATA
or WRITE_RAW_DATA
repeatedly to send the actual data. The data is terminated by calling CLOSE_DATA
. After OPEN_DATA
is called, the only subprograms that can be called are WRITE_DATA
, WRITE_RAW_DATA,
or CLOSE_DATA
. A call to other APIs will result in an INVALID_OPERATION
exception being raised.
CLOSE_DATA
should be called only after OPEN_CONNECTION
, HELO
or EHLO
, MAIL
, and RCPT
have been called. The connection to the SMTP server must be open and a mail transaction must be active when this routine is called.
Note that there is no function form of WRITE_DATA
because the SMTP server does not respond until the data-terminator is sent during the call to CLOSE_DATA
.
This function/procedure performs a generic SMTP command.
Syntax
UTL_SMTP.COMMAND ( c IN OUT NOCOPY connection, cmd IN VARCHAR2, arg IN VARCHAR2 DEFAULT NULL) RETURN reply; UTL_SMTP.COMMAND ( c IN OUT NOCOPY connection, cmd IN VARCHAR2, arg IN VARCHAR2 DEFAULT NULL);
Parameters
Table 232-10 COMMAND Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The SMTP command to send to the server. |
|
The optional argument to the SMTP argument. A space will be inserted between |
Return Values
Table 232-11 COMMAND Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
This function is used to invoke generic SMTP commands. Use COMMAND
if only a single reply line is expected. Use COMMAND_REPLIES
if multiple reply lines are expected.
For COMMAND
, if multiple reply lines are returned from the SMTP server, it returns the last reply line only.
This functions performs a generic SMTP command.
Syntax
UTL_SMTP.COMMAND_REPLIES ( c IN OUT NOCOPY connection, cmd IN VARCHAR2, arg IN VARCHAR2 DEFAULT NULL) RETURN replies;
Parameters
Table 232-12 COMMAND_REPLIES Function Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The SMTP command to send to the server. |
|
The optional argument to the SMTP argument. A space will be inserted between |
Return Values
Table 232-13 COMMAND_REPLIES Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). |
Usage Notes
This function is used to invoke generic SMTP commands. Use COMMAND
if only a single reply line is expected. Use COMMAND_REPLIES
if multiple reply lines are expected.
For COMMAND
, if multiple reply lines are returned from the SMTP server, it returns the last reply line only.
This function/procedure specifies the body of an e-mail message.
Syntax
UTL_SMTP.DATA ( c IN OUT NOCOPY connection body IN VARCHAR2 CHARACTER SET ANY_CS) RETURN reply; UTL_SMTP.DATA ( c IN OUT NOCOPY connection body IN VARCHAR2 CHARACTER SET ANY_CS);
Parameters
Table 232-14 DATA Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP Connection. |
|
The text of the message to be sent, including headers, in [RFC822] format. |
Return Values
Table 232-15 DATA Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The application must ensure that the contents of the body parameter conform to the MIME(RFC822) specification. The DATA
routine will terminate the message with a <CR><LF>.<CR><LF>
sequence (a single period at the beginning of a line), as required by RFC821. It will also translate any sequence of <CR><LF>.<CR><LF>
(single period) in body to <CR><LF>..<CR><LF>
(double period). This conversion provides the transparency as described in Section 4.5.2 of RFC821.
The DATA
call should be called only after OPEN_CONNECTION
, HELO
or EHLO
, MAIL
and RCPT
have been called. The connection to the SMTP server must be open, and a mail transaction must be active when this routine is called.
The expected response from the server is a message beginning with status code 250. The 354 response received from the initial DATA
command will not be returned to the caller.
This function/procedure performs initial handshaking with SMTP server after connecting, with extended information returned.
Syntax
UTL_SMTP.EHLO ( c IN OUT NOCOPY connection, domain IN) RETURN replies; UTL_SMTP.EHLO ( c IN OUT NOCOPY connection, domain IN);
Parameters
Table 232-16 EHLO Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The domain name of the local (sending) host. Used for identification purposes. |
Return Values
Table 232-17 EHLO Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). |
Usage Notes
The EHLO
interface is identical to HELO
except that it allows the server to return more descriptive information about its configuration. [RFC1869] specifies the format of the information returned, which the PL/SQL application can retrieve using the functional form of this call. For compatibility with HELO,
each line of text returned by the server begins with status code 250.
Related Functions
HELO
This function/procedure performs initial handshaking with SMTP server after connecting.
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
Table 232-18 HELO Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The domain name of the local (sending) host. Used for identification purposes. |
Return Values
Table 232-19 HELO Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
RFC 821 specifies that the client must identify itself to the server after connecting. This routine performs that identification. The connection must have been opened through a call to OPEN_CONNECTION Functions before calling this routine.
The expected response from the server is a message beginning with status code 250.
Related Functions
EHLO
This function sends the HELP
command.
Syntax
UTL_SMTP.HELP ( c IN OUT NOCOPY connection, command IN VARCHAR2 DEFAULT NULL) RETURN replies;
Parameters
Table 232-20 HELP Function Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The command to get the help message. |
Return Values
Table 232-21 HELP Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). |
This function/procedure initiates a mail transaction with the server. The destination is a mailbox.
Syntax
UTL_SMTP.MAIL ( c IN OUT NOCOPY connection, sender IN VARCHAR2, parameters IN VARCHAR2 DEFAULT NULL) RETURN reply; UTL_SMTP.MAIL ( c IN OUT NOCOPY connection, sender IN VARCHAR2, parameters IN VARCHAR2 DEFAULT NULL);
Parameters
Table 232-22 MAIL Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The e-mail address of the user sending the message. |
|
The additional parameters to MAIL command as defined in Section 6 of [RFC1869]. It should follow the format of "XXX=XXX (XXX=XXX ....)". |
Return Values
Table 232-23 MAIL Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
This command does not send the message; it simply begins its preparation. It must be followed by calls to RCPT
and DATA
to complete the transaction. The connection to the SMTP server must be open and a HELO
or EHLO
command must have already been sent.
The expected response from the server is a message beginning with status code 250.
The null command.
Syntax
UTL_SMTP.NOOP ( c IN OUT NOCOPY connection) RETURN reply; UTL_SMTP.NOOP ( c IN OUT NOCOPY connection);
Parameter
Return Values
Table 232-25 NOOP Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
This command has no effect except to elicit a successful reply from the server. It can be issued at any time after the connection to the server has been established with OPEN_CONNECTION
. The NOOP
command can be used to verify that the server is still connected and is listening properly.
This command will always reply with a single line beginning with status code 250.
These functions open a connection to an SMTP server.
Syntax
UTL_SMTP.OPEN_CONNECTION ( host IN VARCHAR2, port IN PLS_INTEGER DEFAULT 25, c OUT connection, tx_timeout IN PLS_INTEGER DEFAULT NULL) RETURN reply; UTL_SMTP.OPEN_CONNECTION ( host IN VARCHAR2, port IN PLS_INTEGER DEFAULT 25, tx_timeout IN PLS_INTEGER DEFAULT NULL) RETURN connection;
Parameters
Table 232-26 OPEN_CONNECTION Functions Parameters
Parameter | Description |
---|---|
|
The name of the SMTP server host |
|
The port number on which SMTP server is listening (usually 25). |
|
The SMTP connection. |
|
The time in seconds that the |
Return Values
Table 232-27 OPEN_CONNECTION Functions Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The expected response from the server is a message beginning with status code 220.
The version of OPEN_CONNECTION
that returns UTL_SMTP
.CONNECTION
record checks the reply code returned by an SMTP server when the connection is first established. It raises an exception when the reply indicates an error. Otherwise, it discards the reply. If a user is interested in examining the reply, he or she can invoke the version of OPEN_CONNECTION
that returns REPLY
.
tx_timeout
is intended to govern both the read operations and the write operations. However, an implementation restriction prevents tx_timeout
from governing write operations in the current release.
OPEN_DATA
sends the DATA
command after which you can use WRITE_DATA
and WRITE_RAW_DATA
to write a portion of the e-mail message.
Syntax
UTL_SMTP.OPEN_DATA ( c IN OUT NOCOPY connection) RETURN reply; UTL_SMTP.OPEN_DATA ( c IN OUT NOCOPY connection);
Parameters
Table 232-28 OPEN_DATA Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The portion of the text of the message to be sent, including headers, in [RFC822] format. |
Return Values
Table 232-29 OPEN_DATA Function and Procedure Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The calls to OPEN_DATA
, WRITE_DATA
, WRITE_RAW_DATA
and CLOSE_DATA
must be made in the right order. A program calls OPEN_DATA
to send the DATA
command to the SMTP server. After that, it can call WRITE_DATA
or WRITE_RAW_DATA
repeatedly to send the actual data. The data is terminated by calling CLOSE_DATA
. After OPEN_DATA
is called, the only subprograms that can be called are WRITE_DATA
, WRITE_RAW_DATA,
or CLOSE_DATA
. A call to other APIs will result in an INVALID_OPERATION
exception being raised.
OPEN_DATA
should be called only after OPEN_CONNECTION
, HELO
or EHLO
, MAIL
, and RCPT
have been called. The connection to the SMTP server must be open and a mail transaction must be active when this routine is called.
This function terminates an SMTP session and disconnects from the server.
Syntax
UTL_SMTP.QUIT ( c IN OUT NOCOPY connection) RETURN reply; UTL_SMTP.QUIT ( c IN OUT NOCOPY connection);
Parameter
Return Values
Table 232-31 QUIT Function and Procedure Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The QUIT
command informs the SMTP server of the client's intent to terminate the session. It then closes the connection established by OPEN_CONNECTION
which must have been called before executing this command. If a mail transaction is in progress when QUIT
is issued, it is abandoned in the same manner as RSET.
The function form of this command returns a single line beginning with the status code 221 on successful termination. In all cases, the connection to the SMTP server is closed. The fields REMOTE_HOST
and REMOTE_PORT
of c
are reset.
Related Functions
RSET
This function/procedure specifies the recipient of an e-mail message.
Syntax
UTL_SMTP.RCPT ( c IN OUT NOCOPY connection, recipient IN VARCHAR2, parameters IN VARCHAR2 DEFAULT NULL) RETURN reply; UTL_SMTP.RCPT ( c IN OUT NOCOPY connection, recipient IN VARCHAR2, parameters IN VARCHAR2 DEFAULT NULL);
Table 232-32 RCPT Function and Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The e-mail address of the user to which the message is being sent. |
|
The additional parameters to RCPT command as defined in Section 6 of [RFC1869]. It should follow the format of "XXX=XXX (XXX=XXX ....)". |
Return Values
Table 232-33 RCPT Function and Procedure Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
To send a message to multiple recipients, call this routine multiple times. Each invocation schedules delivery to a single e-mail address. The message transaction must have been begun by a prior call to MAIL
, and the connection to the mail server must have been opened and initialized by prior calls to OPEN_CONNECTION
and HELO
or EHLO
respectively.
The expected response from the server is a message beginning with status code 250 or 251.
This function terminates the current mail transaction.
Syntax
UTL_SMTP.RSET ( c IN OUT NOCOPY connection) RETURN reply; UTL_SMTP.RSET ( c IN OUT NOCOPY connection);
Parameters
Return Values
Table 232-35 RSET Function and Procedure Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
This command allows the client to abandon a mail message it was in the process of composing. No mail will be sent. The client can call RSET
at any time after the connection to the SMTP server has been opened by means of OPEN_CONNECTION
until DATA
or OPEN_DATA
is called. Once the email data has been sent, it will be too late to prevent the email from being sent.
The server will always respond to RSET
with a message beginning with status code 250.
Related Functions
QUIT
This function verifies the validity of a destination e-mail address.
Syntax
UTL_SMTP.VRFY ( c IN OUT NOCOPY connection recipient IN VARCHAR2) RETURN reply;
Parameters
Table 232-36 VRFY Function Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The e-mail address to be verified. |
Return Values
Table 232-37 VRFY Function Return Values
Return Value | Description |
---|---|
|
Reply of the command (see REPLY, REPLIES Record Types). In cases where there are multiple replies, the last reply will be returned. |
Usage Notes
The server attempts to resolve the destination address recipient.
If successful, it returns the recipient's full name and fully qualified mailbox path. The connection to the server must have already been established by means of OPEN_CONNECTION
and HELO
or EHLO
before making this request.
Successful verification returns one or more lines beginning with status code 250 or 251.
U
se WRITE_DATA
to write a portion of the e-mail message. A repeat call to WRITE_DATA
appends data to the e-mail message.
Syntax
UTL_SMTP.WRITE_DATA ( c IN OUT NOCOPY connection, data IN VARCHAR2 CHARACTER SET ANY_CS);
Parameters
Table 232-38 WRITE_DATA Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The portion of the text of the message to be sent, including headers, in [RFC822] format. |
Usage Notes
The calls to OPEN_DATA
, WRITE_DATA
, WRITE_RAW_DATA
and CLOSE_DATA
must be made in the right order. A program calls OPEN_DATA
to send the DATA
command to the SMTP server. After that, it can call WRITE_DATA
or WRITE_RAW_DATA
repeatedly to send the actual data. The data is terminated by calling CLOSE_DATA
. After OPEN_DATA
is called, the only subprograms that can be called are WRITE_DATA
, WRITE_RAW_DATA,
or CLOSE_DATA
. A call to other APIs will result in an INVALID_OPERATION
exception being raised.
The application must ensure that the contents of the body parameter conform to the MIME(RFC822) specification. The DATA
routine will terminate the message with a <CR><LF>.<CR><LF>
sequence (a single period at the beginning of a line), as required by RFC821. It will also translate any sequence of <CR><LF>.<CR><LF>
(single period) in the body to <CR><LF>..<CR><LF>
(double period). This conversion provides the transparency as described in Section 4.5.2 of RFC821.
Notice that this conversion is not bullet-proof. Consider this code fragment:
UTL_SMTP.WRITE_DATA('some message.' || chr(13) || chr(10)); UTL_SMTP.WRITE_DATA('.' || chr(13) || chr(10));
Since the sequence <CR><LF>.<CR><LF>
is split between two calls to WRITE_DATA
, the implementation of WRITE_DATA
will not detect the presence of the data-terminator sequence, and therefore, will not perform the translation. It will be the responsibility of the user to handle such a situation, or it may result in premature termination of the message data.
WRITE_DATA
should be called only after OPEN_CONNECTION
, HELO
or EHLO
, MAIL
, and RCPT
have been called. The connection to the SMTP server must be open and a mail transaction must be active when this routine is called.
Note that there is no function form of WRITE_DATA
because the SMTP server does not respond until the data-terminator is sent during the call to CLOSE_DATA
.
Text (VARCHAR2
) data sent using WRITE_DATA
is converted to US7ASCII before it is sent. If the text contains multibyte characters, each multibyte character in the text that cannot be converted to US7ASCII is replaced by a '?' character. If 8BITMIME extension is negotiated with the SMTP server using the EHLO
subprogram, multibyte VARCHAR2
data can be sent by first converting the text to RAW
using the UTL_RAW
package, and then sending the RAW
data using WRITE_RAW_DATA
.
Use WRITE_RAW_DATA
to write a portion of the e-mail message. A repeat call to WRITE_RAW_DATA
appends data to the e-mail message.
Syntax
UTL_SMTP.WRITE_RAW_DATA ( c IN OUT NOCOPY connection data IN RAW);
Parameters
Table 232-39 WRITE_RAW_DATA Procedure Parameters
Parameter | Description |
---|---|
|
The SMTP connection. |
|
The portion of the text of the message to be sent, including headers, in [RFC822] format. |
Usage Notes
The calls to OPEN_DATA
, WRITE_DATA
, WRITE_RAW_DATA
and CLOSE_DATA
must be made in the right order. A program calls OPEN_DATA
to send the DATA
command to the SMTP server. After that, it can call WRITE_DATA
or WRITE_RAW_DATA
repeatedly to send the actual data. The data is terminated by calling CLOSE_DATA
. After OPEN_DATA
is called, the only subprograms that can be called are WRITE_DATA
, WRITE_RAW_DATA,
or CLOSE_DATA
. A call to other APIs will result in an INVALID_OPERATION
exception being raised.
The application must ensure that the contents of the body parameter conform to the MIME(RFC822) specification. The DATA
routine will terminate the message with a <CR><LF>.<CR><LF>
sequence (a single period at the beginning of a line), as required by RFC821. It will also translate any sequence of <CR><LF>.<CR><LF>
(single period) in the body to <CR><LF>..<CR><LF>
(double period). This conversion provides the transparency as described in Section 4.5.2 of RFC821.
Notice that this conversion is not bullet-proof. Consider this code fragment:
UTL_SMTP.WRITE_DATA('some message.' || chr(13) || chr(10)); UTL_SMTP.WRITE_DATA('.' || chr(13) || chr(10));
Since the sequence <CR><LF>.<CR><LF>
is split between two calls to WRITE_DATA
, the implementation of WRITE_DATA
will not detect the presence of the data-terminator sequence, and therefore, will not perform the translation. It will be the responsibility of the user to handle such a situation, or it may result in premature termination of the message data.
XXX_DATA
should be called only after OPEN_CONNECTION
, HELO
or EHLO
, MAIL
, and RCPT
have been called. The connection to the SMTP server must be open and a mail transaction must be active when this routine is called.
Note that there is no function form of WRITE_DATA
because the SMTP server does not respond until the data-terminator is sent during the call to CLOSE_DATA
.
Text (VARCHAR2
) data sent using WRITE_DATA
is converted to US7ASCII before it is sent. If the text contains multibyte characters, each multibyte character in the text that cannot be converted to US7ASCII is replaced by a '?' character. If 8BITMIME extension is negotiated with the SMTP server using the EHLO
subprogram, multibyte VARCHAR2
data can be sent by first converting the text to RAW
using the UTL_RAW
package, and then sending the RAW
data using WRITE_RAW_DATA
.