utl_smtp Authentication POP3 before SMTP - ORA-29279 [message #420363] |
Fri, 28 August 2009 09:57  |
webdino73
Messages: 15 Registered: August 2005
|
Junior Member |
|
|
Hello,
I use the utl_smtp pack and when I try to send email over my 1blu Mailaccount I received the following message
ORA-29279: SMTP permanent error: 503 AUTH command used when not advertised
I use the following code:
UTL_SMTP.command(l_mail_conn, 'AUTH LOGIN');
UTL_SMTP.command(l_mail_conn,
UTL_RAW.CAST_TO_VARCHAR2(UTL_ENCODE.BASE64_ENCODE(UTL_RAW.CAST_TO_RAW(p_AuthUser))));
UTL_SMTP.command(l_mail_conn,
UTL_RAW.CAST_TO_VARCHAR2(UTL_ENCODE.BASE64_ENCODE(UTL_RAW.CAST_TO_RAW(p_AuthPassword))));
The error is probably from the authentication method?
I don´t find the method which says the server to use smtp after pop. Has anyone help for me? thanks
|
|
|
|
|
|
|
|
|