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

Home -> Community -> Usenet -> c.d.o.server -> ORA-30678 When sending email.

ORA-30678 When sending email.

From: csharpgeek <cepcorreia_at_hotmail.com>
Date: 4 Jan 2005 04:51:57 -0800
Message-ID: <1104843116.985934.300180@f14g2000cwb.googlegroups.com>


Im running 9i on linux. Any one any ideas ? DECLARE v_connection UTL_SMTP.CONNECTION;
v_reply UTL_SMTP.REPLY;

BEGIN

v_connection := UTL_SMTP.OPEN_CONNECTION('mail.newreg.com',25);
v_reply := UTL_SMTP.HELO(v_connection,'mail.xxxxxxxx.com');
v_reply := UTL_SMTP.MAIL(v_connection,c_at_xxxxxxxx.com');
v_reply := UTL_SMTP.RCPT(v_connection,c_at_xxxxxxxx.com');
v_reply := UTL_SMTP.DATA(v_connection,'Sent From PL/SQL');
v_reply := UTL_SMTP.QUIT(v_connection);

   END; Received on Tue Jan 04 2005 - 06:51:57 CST

Original text of this message

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