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;