Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> UTL_SMTP
Hi Gurus,
I am trying to used UTL_SMTP to send an e-mail form my oracle machine. I
tried the sample code from oracle documentation.
PROCEDURE
send_mail (sender IN VARCHAR2, recipient IN VARCHAR2, message IN VARCHAR2)as
begin
send_mail('aaa_at_somewhere.com','me_at_somewhere.com','test from oracle');
end;
and i receive the e-mail like this
Return-Path: <aaa_at_somewhere.com>
Delivered-To: me_at_somewhere.com
Received: (qmail 3139 invoked from network); 4 Jul 2001 09:58:00 -0000
Received: from oracle.somewhere.com (HELO mail.somewhere.com) (192.169.0.25)
by mail.somewhere.com with SMTP; 4 Jul 2001 09:58:01 -0000
X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (http://amavis.org/)
test form oracle
the problem is i lost the sender ( it sould be aaa_at_somewhere.com) and the title (i don't know where i must put the title).
Regards,
Herman
Received on Wed Jul 04 2001 - 05:00:03 CDT
![]() |
![]() |