Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/09/2011, 11:12
mjollnir
 
Fecha de Ingreso: septiembre-2011
Ubicación: Panamá
Mensajes: 1
Antigüedad: 12 años, 7 meses
Puntos: 0
Utl_mail no envia el correo y se queda

Buenas

Se a instalado el utl_mail y estamos utilizando un smtp de gmail, pero al tratar
de enviar un correo envia el siguiente error:

ORA-29278: SMTP transient error: 421 Service not available
ORA-06512: at "SYS.UTL_SMTP", line 20
ORA-06512: at "SYS.UTL_SMTP", line 96
ORA-06512: at "SYS.UTL_SMTP", line 138
ORA-06512: at "SYS.UTL_MAIL", line 395
ORA-06512: at "SYS.UTL_MAIL", line 608

El script es el siguiente:

BEGIN
UTL_MAIL.send(sender => '[email protected]',
recipients => '[email protected]',
subject => 'Prueba del correo',
message => 'Hola a todos',
mime_type => 'text; charset=us-ascii');
END;