We have a simple lead generation system that lets people compose an email and send to their friends. Our end users can edit the subject line and text of the email. I'm having problems with Chinese/Taiwan characters in the subject line. The user entered email content shows up fine in Chinese, but I'm having problems with the subject line.

I'm using Rails 3.0.9 and have it configured to send through my Gmail account right now. All of that is working, but maybe Google is messing with my subject line?

Here's the code snippet in my mailer:

mail(:to => lead_email,
     :subject => "=?utf-8?B?" + Base64.encode64(@club.offers.first.title) + "?=",
     :from => from_email,
     :content_type => "text/html; charset=utf-8",
     :reply_to => 'noreply@buddyreferralsystem.com',
     :content_transfer_encoding => '8bit'
).deliver

and this is what I get in my email headers when it is received.

Subject: 期待很快就可以在俱樂部看到你喔!
Mime-Version: 1.0
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

When I read the email in GMail, I see the non-readable subject line above, but the chinese text in the email content is rendered just fine. One thing to note is that the Content-Transfer-Encoding seems to be getting changed from the '8bit' that I set to 'quoted-printable'.

any ideas what is going on and what I need to do to get Chinese characters to show up in the subject line?

link|improve this question
feedback

1 Answer

Have you tried different charsets? I see you are using UTF-8 in your subject line.

Try changing that to some other charset like big5

GB is the official standard of the People's Republic of China and Big5 is a de facto standard of Taiwan.

Put 'big5' where you see 'utf-8' in the subject line there. You might be able to use UTF-16.

http://en.wikipedia.org/wiki/Big5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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