Hi Friends,
Please find the below brief description of the problem that I am facing when attempting to send e-mails in Arabic ( This code snippet uses
Java and JavaMail API 's )
When I try sending mails using the following encoding
mimemessage.setHeader("Content-Transfert-Encoding","8Bit");
mimemessage.setHeader("Content-Type", "text/html");
The mail component that I wrote works fine and sends mail in Arabic
But when I change the encoding to
mimemessage.setHeader("Content-Transfer-Encoding","8Bit");
mimemessage.setHeader("Content-Type", "text/html");
The message is grabbled and junk characters (???) are got in the resulting email
I tried searching the MIME RFC's but I couldn't find the difference between
Content-Transfert-Encoding AND
Content-Transfer-Encoding
Can you please help me what is the difference between the two encodings and do direct me to the corresponding documentation.
I would be grateful for any help offered.