powered_by table is fixed.
[cocanwiki.git] / scripts / user_prefs.ml
index 0cc2db0..ebcf6fd 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: user_prefs.ml,v 1.8 2006/03/28 16:24:08 rich Exp $
+ * $Id: user_prefs.ml,v 1.9 2006/07/31 09:49:43 rich Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -80,7 +80,13 @@ let run r (q : cgi) dbh hostid {hostname=hostname} user =
        let body = email_change_template#to_string in
 
        let subject = "Please verify your new email address at " ^ hostname in
-       Sendmail.send_mail ~subject ~to_addr:[new_email] body
+
+       let content_type =
+         "text/plain", ["charset", Mimestring.mk_param "UTF-8"] in
+       let to_addrs = [ "", new_email ] in
+
+       let msg = Netsendmail.compose ~subject ~to_addrs ~content_type body in
+       Netsendmail.sendmail msg
       );
 
       changed