I try to send an email using utl_smtp with Oracle including norwegian characters (å æ ø). The characters are stored and displayed correctly in the database otherwise, but shows up as question marks in the email.
My database character set is WE8MSWIN1252
I have tried different Content-Type mime headers in the email including ‘text/plain; charset=”win-1252″‘, this does not seem to help.
By default smtp is 7bit ascii (kinda old tech :). You must be using
UTL_SMTP.write_dataand from the documentation:There is a sample demo package on OTN that shows how to send multibyte emails.