diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-06-20 01:15:36 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-06-20 01:15:36 -0400 |
commit | bf0be3ddb7226f428a3cc00a87c5a64f2113c00b (patch) | |
tree | f39f275c5ada6dc79d835eb78101596fd003f368 /lib/mail.php | |
parent | 8ecd2a6b1dcfb21fae9a70bba65dfff3bb7503f1 (diff) |
confirm email addresses
darcs-hash:20080620051536-5ed1f-231e427832dd20c861eb7a6dc1171315e90f455b.gz
Diffstat (limited to 'lib/mail.php')
-rw-r--r-- | lib/mail.php | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/lib/mail.php b/lib/mail.php index 25253fd81..23fd24b25 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -54,4 +54,30 @@ function mail_notify_from() { return $config['site']['name'] . ' <noreply@'.$config['site']['server'].'>'; } } -
\ No newline at end of file + +# For confirming an email address + +function mail_confirm_address($code, $nickname, $address) { + $recipients = $address; + $headers['From'] = mail_notify_from(); + $headers['To'] = $nickname . ' <' . $address . '>'; + $headers['Subject'] = _t('Email address confirmation'); + + $body = "Hey, $nickname."; + $body .= "\n\n"; + $body .= 'Someone just entered this email address on ' . common_config('site', 'name') . '.'; + $body .= "\n\n"; + $body .= 'If it was you, and you want to confirm your entry, use the URL below:'; + $body .= "\n\n"; + $body .= "\t".common_local_url('confirmemail', + array('code' => $code)); + $body .= "\n\n"; + $body .= 'If not, just ignore this message.'; + $body .= "\n\n"; + $body .= 'Thanks for your time, '; + $body .= "\n"; + $body .= common_config('site', 'name'); + $body .= "\n"; + + mail_send($recipients, $headers, $body); +} |