diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 17:50:33 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 17:50:33 -0400 |
commit | 90583f31af6392005b11915e2e0f2a6755ab0ea7 (patch) | |
tree | f1b0935aed1fc56459e14583cf5ec5e028530a36 /lib | |
parent | 836f5bb756f51e3927d106e6d23eba4d5c237576 (diff) |
rudimentary recoverpassword system
darcs-hash:20080624215033-34904-d5576bf55da26df44f0580c3759ed3edd8597506.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mail.php | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/mail.php b/lib/mail.php index 91eafa97e..ef33b2127 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -42,8 +42,10 @@ function mail_send($recipients, $headers, $body) { assert($backend); # throws an error if it's bad $sent = $backend->send($recipients, $headers, $body); if (PEAR::isError($sent)) { - common_server_error($sent->getMessage(), 500); + common_log(LOG_ERROR, 'Email error: ' . $sent->getMessage()); + return false; } + return true; } function mail_notify_from() { @@ -55,7 +57,23 @@ function mail_notify_from() { } } +function mail_to_user(&$user, $subject, $body, $address=NULL) { + if (!$address) { + $address = $user->email; + } + + $recipients = $address; + $profile = $user->getProfile(); + + $headers['From'] = mail_notify_from(); + $headers['To'] = $profile->getBestName() . ' <' . $address . '>'; + $headers['Subject'] = $subject; + + return mail_send($recipients, $headers, $body); +} + # For confirming a Jabber address +# XXX: change to use mail_to_user() above function mail_confirm_address($code, $nickname, $address) { $recipients = $address; |