Lines Matching refs:to

2674             $to=$issue['user_mail'];
2675 if($to==='') $to=$this->getConf('email_address');
2678 if(stripos($to.$cc,$issue['assigned'])==false) $cc .=', '.$issue['assigned'];
2682 …$this->mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null…
2685 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
2740 if($user_mail['userinfo']['mail']===$issue['user_mail']) $to=$issue['assigned'];
2741 elseif($user_mail['userinfo']['mail']===$issue['assigned']) $to=$issue['user_mail'];
2742 else $to=$issue['user_mail'].', '.$issue['assigned'];
2743 if($to==='') $to=$this->getConf('email_address');
2747 …$this->mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null…
2750 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
2813 if($user_mail['userinfo']['mail']===$issue['user_mail']) $to=$issue['assigned'];
2814 elseif($user_mail['userinfo']['mail']===$issue['assigned']) $to=$issue['user_mail'];
2815 else $to=$issue['user_mail'].', '.$issue['assigned'];
2816 if(strlen($to)<3) $to=$this->getConf('email_address');
2820 …$this->mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null…
2823 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
2864 if($user_mail['userinfo']['mail']===$issue['user_mail']) $to=$issue['assigned']. "\r\n";
2865 … elseif($user_mail['userinfo']['mail']===$issue['assigned']) $to=$issue['user_mail']. "\r\n";
2866 else $to=$issue['user_mail'].', '.$issue['assigned']. "\r\n";
2870 …$this->mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null…
2873 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
2884 …function mail_send_html($to, $subject, $body, $bodyhtml, $from='', $cc='', $bcc='', $header='', $p… argument
2903 $to = mail_encode_address($to,'',$usenames);
2926 return @mail($to,$subject,$message,$header);
2928 return @mail($to,$subject,$message,$header,$params);