首先;
设置
通过运行以下脚本加载包。
sys/passwordord AS SYSDBA
@$ORACLE_HOME/rdbms/admin/utlmail.sql
@$ORACLE_HOME/rdbms/admin/prvtmail.plb
In addition the SMTP_OUT_SERVER parameter must be set to identify the SMTP server.
CONN sys/password AS SYSDBA
ALTER SYSTEM SET smtp_out_server='smtp.domain.com' SCOPE=SPFILE;
-- 仅在 10gR1 中需要重启实例。
立即关机
启动
我建议您在数据库服务器上使用邮件中继,而不是直接连接到外部邮件服务器。邮件中继配置可以很简单,在 SMTP_OUT_SERVER 参数中引用“localhost”。连接到外部邮件服务器的任何复杂性都会隐藏在邮件中继配置中。
发送电子邮件 配置完成后,我们现在可以使用 SEND 过程发送邮件。它接受以下参数。
SENDER : This should be a valid email address.
RECIPIENTS : A comma-separated list of email addresses.
CC : An optional comma-separated list of email addresses.
BCC : An optional comma-separated list of email addresses.
SUBJECT : The subject line for the email.
MESSAGE : The email body.
MIME_TYPE : Set to 'text/plain; charset=us-ascii' by default.
PRIORITY : (1-5) Set to 3 by default.
REPLYTO : Introduced in 11gR2. A valid email address.
下面是一个用法示例。
BEGIN
UTL_MAIL.send(sender => 'me@domain.com',
recipients => 'person1@domain.com,person2@domain.com',
cc => 'person3@domain.com',
bcc => 'myboss@domain.com',
subject => 'UTL_MAIL Test',
message => 'If you get this message it worked!');
END;
/
发送带附件的电子邮件
该包还支持分别使用 SEND_ATTACH_RAW 和 SEND_ATTACH_VARCHAR2 包发送带有 RAW 和 VARCHAR2 附件的邮件。它们的工作方式与 SEND 过程类似,但有一些额外的参数。
附件:附件的内容。这应该是 VARCHAR2 或 RAW,具体取决于您调用的过程。
ATT_INLINE : Indicates if the attachment should be readable inline. Default FALSE.
ATT_MIME_TYPE : The default is 'text/plain; charset=us-ascii'.
ATT_FILENAME : The name for the attachment.
以下是发送带有文本附件的电子邮件的示例。
BEGIN
UTL_MAIL.send_attach_varchar2 (
sender => 'me@domain.com',
recipients => 'person1@domain.com,person2@domain.com',
cc => 'person3@domain.com',
bcc => 'myboss@domain.com',
subject => 'UTL_MAIL Test',
message => 'If you get this message it worked!',
attachment => 'The is the contents of the attachment.',
att_filename => 'my_attachment.txt'
);
END;
/