We use UTF-8 everywhere. Fixes ticket #1285.

This commit is contained in:
Bharat Mediratta
2010-08-15 01:59:54 -07:00
parent a1be33f6ab
commit ff1d8aea2f
7 changed files with 10 additions and 10 deletions

View File

@@ -56,7 +56,7 @@ class User_Profile_Controller extends Controller {
->to($user->email)
->subject(html::clean($form->message->subject->value))
->header("Mime-Version", "1.0")
->header("Content-type", "text/html; charset=iso-8859-1")
->header("Content-type", "text/html; charset=UTF-8")
->reply_to($form->message->reply_to->value)
->message(html::purify($form->message->message->value))
->send();