(* COCANWIKI - a wiki written in Objective CAML.
* Written by Richard W.M. Jones <rich@merjis.com>.
* Copyright (C) 2004 Merjis Ltd.
- * $Id: contact.ml,v 1.11 2006/05/09 11:36:16 rich Exp $
+ * $Id: contact.ml,v 1.12 2006/07/31 09:10:33 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
| [] -> fail "There is no such contact form in the database."
| _ -> assert false in
- let emails =
+ let to_addrs =
PGSQL(dbh) "select email from contact_emails where contactid = $id" in
+ let to_addrs = List.map (fun email -> "", email) to_addrs in
- if emails = [] then
+ if to_addrs = [] then
fail "There are no email addresses associated with that contact id.";
(* Now process the strings passed as parameters to the script. Any
(* Send the initial email. *)
let body = template#to_string in
- Sendmail.send_mail ~subject ~to_addr:emails body;
+ let msg = Netsendmail.compose ~to_addrs ~subject body in
+ Netsendmail.sendmail msg;
(* Send the following uploads by email. *)
List.iter (fun name ->
let upload = q#upload name in
let subject = upload.upload_filename in
- (* XXX This is insecure. *)
- let content_type = upload.upload_content_type in
+ let content_type = upload.upload_content_type, [] in
let body = upload.upload_value in
- Sendmail.send_mail ~subject ~to_addr:emails ~content_type body)
+ let msg =
+ Netsendmail.compose ~to_addrs ~subject ~content_type body in
+ Netsendmail.sendmail msg)
uploads;
(* Confirm. *)