Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

When sending hebrew through mail I get question marks ???

Lior KerenMar 4 2016 — edited Mar 10 2016

HI,

I'm trying to send mail using utl_mail.send with hebrew charecters,

But the mail I'm getting is with ????

I understand that outlook works only with ISO-8859-8

so I tried to set it on mine_type but it didn't help.

DECLARE

     var VARCHAR2(1024);

BEGIN

  var := q'[שלום]';

 

DBMS_OUTPUT.PUT_LINE(var);

utl_mail.send(sender     => 'oracle@org.co.il',

                recipients => '&1',

                message    => var,

  mime_type => 'text/html charset=iso-8859-8'

                    );

END;

/

exit

Do you have any idea?

Lior

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 7 2016
Added on Mar 4 2016
9 comments
3,727 views