Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Q: UTL_SMTP

Q: UTL_SMTP

From: Schoen Volker <v.schoen_at_inplan.de>
Date: Fri, 20 Apr 2001 09:50:23 -0700
Message-ID: <F001.002EDEDD.20010420093121@fatcity.com>

Hi list,

I have a problem with package UTL_SNMP. I have a procedure which sends mails to special recipient. My problem is, that the body of the message
(utl_smtp.data(mail_conn, message);) will not be sent. Any help is welcome.
Following the procedure.

create or replace PROCEDURE sendmail
AS

   sERROR_CODE      VARCHAR2(10);               
   sERROR_TEXT      VARCHAR2(250);              
   mailhost VARCHAR2(30) := 'mailhost';    mail_conn utl_smtp.connection;
   sender       varchar2(20) :='sender_at_sender.com';
   recipient    varchar2(50) :='recipient_at_mailhost.com';
   message      varchar2(200) :='This is the message text.';
BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.data(mail_conn, message);
    utl_smtp.quit(mail_conn);

EXCEPTION
    WHEN OTHERS THEN
      sERROR_CODE := 'ORA' || SQLCODE;
      sERROR_TEXT := sERROR_TEXT || ' ' || SQLERRM;

      INSERT INTO ELREFADMIN.MAILERROR
      ( ERROR_CODE, ERROR_TEXT)
      VALUES (sERROR_CODE, sERROR_TEXT);
END;
/

TIA Volker Schön
E-Mail: mailto:v.schoen_at_inplan.de
http://www.inplan.de

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Schoen Volker
  INET: v.schoen_at_inplan.de

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L

(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
Received on Fri Apr 20 2001 - 11:50:23 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US