diff options
author | Tim Roes <mail@timroes.de> | 2012-05-07 17:08:35 +0200 |
---|---|---|
committer | Tim Roes <mail@timroes.de> | 2012-05-07 17:08:35 +0200 |
commit | efa78c8638547cab77a37006e7f86aed792a1609 (patch) | |
tree | 492804d80b28f8e32785b3648d9e03e77804b50f /inc/subscription.php | |
parent | ae992f53831c105d6deacfef79d7723b22a00033 (diff) | |
parent | f774b92a94947b3eabd64919b6b4ba74f9c4b5fd (diff) | |
download | rpg-efa78c8638547cab77a37006e7f86aed792a1609.tar.gz rpg-efa78c8638547cab77a37006e7f86aed792a1609.tar.bz2 |
Merge branch 'master' of https://github.com/splitbrain/dokuwiki
Diffstat (limited to 'inc/subscription.php')
-rw-r--r-- | inc/subscription.php | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/inc/subscription.php b/inc/subscription.php index c94f17ad0..d1ee0397a 100644 --- a/inc/subscription.php +++ b/inc/subscription.php @@ -377,18 +377,20 @@ function subscription_send_list($subscriber_mail, $ids, $ns_id) { */ function subscription_send($subscriber_mail, $replaces, $subject, $id, $template) { global $conf; + global $lang; $text = rawLocale($template); - $replaces = array_merge($replaces, array('TITLE' => $conf['title'], - 'DOKUWIKIURL' => DOKU_URL, - 'PAGE' => $id)); - - foreach ($replaces as $key => $substitution) { - $text = str_replace('@'.strtoupper($key).'@', $substitution, $text); - } + $trep = array_merge($replaces, array('PAGE' => $id)); - global $lang; $subject = $lang['mail_' . $subject] . ' ' . $id; - mail_send('', '['.$conf['title'].'] '. $subject, $text, - $conf['mailfrom'], '', $subscriber_mail); + $mail = new Mailer(); + $mail->bcc($subscriber_mail); + $mail->subject($subject); + $mail->setBody($text,$trep); + $mail->setHeader( + 'List-Unsubscribe', + '<'.wl($id,array('do'=>'subscribe'),true,'&').'>', + false + ); + return $mail->send(); } |