Lines Matching refs:this

29         $this->prepareNamespacetemplateReplacements();
30 $this->prepareDateTimereplacements();
31 $this->prepareLanguagePlaceholder();
32 $this->prepareNoincludeReplacement();
33 $this->prepareFieldReplacements($fields);
36 $this->subject = sprintf($this->getLang('mailsubject'), $ID);
39 list($table_html, $table_text) = $this->processFieldsBuildTable($fields, $mail);
42 if($this->mailtemplate) {
44 $this->patterns['__tablehtml__'] = '/@TABLEHTML@/';
45 $this->patterns['__tabletext__'] = '/@TABLETEXT@/';
46 $this->values['__tablehtml__'] = $table_html;
47 $this->values['__tabletext__'] = $table_text;
49 list($this->_mail_html, $this->_mail_text) = $this->getContent();
53 $this->_mail_html .= sprintf($this->getLang('mailintro')."<br><br>", dformat());
54 $this->_mail_html .= $table_html;
56 $this->_mail_text .= sprintf($this->getLang('mailintro')."\n\n", dformat());
57 $this->_mail_text .= $table_text;
59 $mail->setBody($this->_mail_text,null,null,$this->_mail_html);
62 if(!empty($this->replyto)) {
63 $replyto = $mail->cleanAddress($this->replyto);
68 $to = $this->replace(implode(',',$argv)); // get recipient address(es)
76 $this->subject = $this->replace($this->subject);
77 $mail->subject($this->subject);
80 throw new Exception($this->getLang('e_mail'));
110 list($html, $text) = $this->mail_buildRow($label);
114 list($html, $text) = $this->mail_buildRow($label);
121 $message = $this->getLang('attachmentMailEmpty');
122 } else if($file['size'] > $this->getConf('maxEmailAttachmentSize')) {
123 $message = $file['name'] . ' ' . $this->getLang('attachmentMailToLarge');
124 …msg(sprintf($this->getLang('attachmentMailToLarge_userinfo'), hsc($file['name']), filesize_h($this
129 list($html, $text) = $this->mail_buildRow($label, $message);
132 $this->subject = $label;
136 $this->mailtemplate = $this->replace($field->getParam('template'));
137 resolve_pageid(getNS($ID), $this->mailtemplate, $ignored);
144 list($html, $text) = $this->mail_buildRow($label, $value);
147 $this->replyto[] = $value;
182 $content = rawWiki($this->mailtemplate);
198 $this->replace($html),
199 $this->replace($text)