Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> ORA-30678 When sending email.
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