Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: ORA-30678 When sending email.
csharpgeek wrote:
> 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;
Not until you provide WHICH release of 9i and which vendor/release of
Linux you are using.
David Fitzjarrell Received on Tue Jan 04 2005 - 07:50:18 CST
![]() |
![]() |