Lines Matching refs:bodyhtml

953               $bodyhtml = file_get_contents($sFilename);
974 …if ($this->getConf('mail_templates')==1) $bodyhtml = $this->replace_bodyhtml($bodyhtml, $pstring, …
980 …$this->mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null…
996 …function mail_send_html($to, $subject, $body, $bodyhtml, $from='', $cc='', $bcc='', $header='', $p… argument
1024 $bodyhtml = mail_quotedprintable_encode($bodyhtml,0);
1033 $bodyhtml."\n".
1043 function replace_bodyhtml($bodyhtml, $pstring, $project, $issue, $comment) { argument
1045 …$bodyhtml = str_ireplace("%%_SEE%%",DOKU_URL.'doku.php?id='.$ID.'&do=showcaselink&'.$pstring,$body…
1046 $bodyhtml = str_ireplace("%%issuemod_head%%",$this->getLang('issuemod_head'),$bodyhtml);
1047 … $bodyhtml = str_ireplace("%%issuemod_issueid%%",$this->getLang('issuemod_issueid'),$bodyhtml);
1048 $bodyhtml = str_ireplace("%%ID%%",$issue['id'],$bodyhtml);
1049 $bodyhtml = str_ireplace("%%issuemod_title%%",$this->getLang('issuemod_title'),$bodyhtml);
1050 $bodyhtml = str_ireplace("%%TITEL%%",$issue['title'],$bodyhtml);
1051 $bodyhtml = str_ireplace("%%issuemod_status%%",$this->getLang('issuemod_status'),$bodyhtml);
1052 $bodyhtml = str_ireplace("%%STATUS%%",$issue['status'],$bodyhtml);
1053 $bodyhtml = str_ireplace("%%th_project%%",$this->getLang('th_project'),$bodyhtml);
1054 $bodyhtml = str_ireplace("%%PROJECT%%",$project,$bodyhtml);
1055 … $bodyhtml = str_ireplace("%%issuemod_product%%",$this->getLang('issuemod_product'),$bodyhtml);
1056 $bodyhtml = str_ireplace("%%PRODUCT%%",$issue['product'],$bodyhtml);
1057 … $bodyhtml = str_ireplace("%%issuemod_version%%",$this->getLang('issuemod_version'),$bodyhtml);
1058 $bodyhtml = str_ireplace("%%VERSION%%",$issue['version'],$bodyhtml);
1059 … $bodyhtml = str_ireplace("%%issuemod_severity%%",$this->getLang('issuemod_severity'),$bodyhtml);
1060 $bodyhtml = str_ireplace("%%SEVERITY%%",$issue['severity'],$bodyhtml);
1061 … $bodyhtml = str_ireplace("%%issuemod_creator%%",$this->getLang('issuemod_creator'),$bodyhtml);
1062 $bodyhtml = str_ireplace("%%CREATOR%%",$issue['user_name'],$bodyhtml);
1063 $bodyhtml = str_ireplace("%%CREATOR_MAIL%%",$issue['user_mail'],$bodyhtml);
1064 $bodyhtml = str_ireplace("%%th_assigned%%",$this->getLang('th_assigned'),$bodyhtml);
1065 $bodyhtml = str_ireplace("%%ASSIGNED%%",$issue['assigned'],$bodyhtml);
1066 $bodyhtml = str_ireplace("%%th_created%%",$this->getLang('th_created'),$bodyhtml);
1067 $bodyhtml = str_ireplace("%%CREATED%%",$issue['created'],$bodyhtml);
1069 …$bodyhtml = str_ireplace("%%issue_resolved_intro%%",$this->getLang('issue_resolved_intro'),$bodyht…
1070 …$bodyhtml = str_ireplace("%%issue_resolved_text%%",$this->getLang('issue_resolved_text'),$bodyhtml
1072 $bodyhtml = str_ireplace("%%RESOLUTION%%",$this->xs_format($frmt_res),$bodyhtml);
1073 $bodyhtml = str_ireplace("%%TIMESTAMP%%",date($this->getConf('d_format')),$bodyhtml);
1077 $bodyhtml = str_ireplace("%%RESOLVER%%",$usr,$bodyhtml);
1078 $bodyhtml = str_ireplace("%%MOD_BY%%",$usr,$bodyhtml);
1079 …$bodyhtml = str_ireplace("%%issuedescrmod_subject%%",sprintf($this->getLang('issuedescrmod_subject…
1080 $bodyhtml = str_ireplace("%%th_description%%",$this->getLang('th_description'),$bodyhtml);
1082 $bodyhtml = str_ireplace("%%DESCRIPTION%%",$this->xs_format($frmt_descr),$bodyhtml);
1086 $bodyhtml = str_ireplace("%%lbl_cmts_wlog%%",$this->getLang('lbl_cmts_wlog'),$bodyhtml);
1087 $bodyhtml = str_ireplace("%%CMNT_ID%%",$comment['id'],$bodyhtml);
1088 $bodyhtml = str_ireplace("%%CMNT_AUTHOR%%",$comment['author'],$bodyhtml);
1089 …$bodyhtml = str_ireplace("%%CMNT_TIMESTAMP%%",date($this->getConf('d_format'),strtotime($comment['…
1091 $bodyhtml = str_ireplace("%%COMMENT%%",$this->xs_format($frmt_cmnt),$bodyhtml);
1093 $bodyhtml = str_ireplace("%%issuemod_br%%",$this->getLang('issuemod_br'),$bodyhtml);
1094 $bodyhtml = str_ireplace("%%issuemod_end%%",$this->getLang('issuemod_end'),$bodyhtml);
1096 return $bodyhtml;