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?