Lines Matching +full:rev +full:- +full:parse
16 $this->mailer = $mailer;
23 …* @param string $rev The revision of the page, set to the current revision of the page $id if not …
27 protected function getMessageID($id, $rev = null) argument
37 if (is_null($rev)) {
38 $rev = @filemtime(wikiFN($id));
41 return "<$id?rev=$rev@$listid>";
52 * @param array $trep Predefined parameters used to parse the
54 * @param array $hrep Predefined parameters used to parse the
69 $mail = $this->mailer;
70 $mail->bcc($subscriber_mail);
71 $mail->subject($subject);
72 $mail->setBody($text, $trep, $hrep);
74 $mail->from($conf['mailfromnobody']);
77 $mail->setHeader('List-Unsubscribe', '<' . $trep['SUBSCRIBE'] . '>', false);
81 $mail->setHeader($header, $value);
84 return $mail->send();