vote up 1 vote down star
1

I have an ASP.NET application that needs to send emails in Korean. These emails are sent in plaintext.

But when the emails are received, they look like this:

? First name? ??: ?????.

?? ???? ???? ?? ??? ??? ?? ???? ???? ????? ???? ????. ??????? ??? ????? ???? ??? ??1-888-123-4567 ? ??????? ?? info@example.com ?? ?????? ???? ??? ??????.

Currently I'm not setting the encoding. Just using the default. Ideally, I would like the encoding to work with all sorts of emails. Hopefully I don't have to set the encoding on a per-email basis.

flag

3 Answers

vote up 2 vote down check

You basically have 2 ways to encode email parts:

  1. Using the Korean Code page for your email so people not using Unicode can still view it (charsets like ISO-2022-KR and x-windows-949 , I don't know which of the 3 is the most common):

    Content-Type: text/plain;
    charset="EUC-KR"
    Content-Transfer-Encoding: quoted-printable
    
  2. Using UTF8 encoding, which is the preferred way nowadays.
    In any case, the recipient must have proper support for Asian languages installed on their machine for the message to display correctly.

    Content-Type: text/plain; charset=UTF-8;
    Content-Transfer-Encoding: 8bit
    

Here are a couple of good articles that explain how to implement this properly:

link|flag
vote up 1 vote down

Try setting the encoding of the email to UTF-8.

I think this would be the line you need in the email headers:

Content-Type: text/plain; charset=UTF-8

Hope this helps

Adam

link|flag
vote up 0 vote down

Hi,
What character encoding are you using to send those emails?

link|flag
Currently I'm not setting the encoding. Just using the default. – Keltex Mar 13 at 23:22
Did you try encoding the text in UTF-8? I also had a lots of troubles with spanish characters. The <a href="joelonsoftware.com/articles/… about encoding types by Joel Spolsky</a> helped me a lot understanding what to do. – jdecuyper Mar 14 at 0:10
Sorry for the bad URL. The correct one is: joelonsoftware.com/articles/Unicode.html/… – jdecuyper Mar 14 at 0:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.