Hi,
Is there anyway to change the encoding of the emails sent by dbms_scheduler? Everything is working properly, but I can't seem to find how to change the encoding for the message body.
I was able to get special characters on the email subject by using:
'=?UTF-8?Q?' || utl_raw.cast_to_varchar2(utl_encode.quoted_printable_encode(utl_raw.cast_to_raw('ÁÀÃÂ'))) || '?='
But not being able to display special characters correctly in the body.
Thanks in advance.