Send utf-8 mails

Change-Id: I8324d9d708e600f350038eaa3e385e3ee4bd5c97
diff --git a/mail.php b/mail.php
index 1432a26..c0f3251 100755
--- a/mail.php
+++ b/mail.php
@@ -32,7 +32,11 @@
         ));
 
     // Creating the Mime message
-    $mime = new Mail_mime($crlf);
+    $mime = new Mail_mime(array(
+        "text_charset" => "utf-8",
+        "html_charset" => "utf-8",
+        "eol" => $crlf
+    ));
 
     // Setting the body of the email
     $mime->setTXTBody($message->text);