sendmailSend() protected method

Send mail using the $Sendmail program.
See also: PHPMailer::$Sendmail
protected sendmailSend ( string $header, string $body ) : boolean
$header string The message headers
$body string The message body
return boolean
コード例 #1
0
ファイル: Mailer.php プロジェクト: rodacom/jelix
 protected function sendmailSend($header, $body)
 {
     if ($this->copyToFiles) {
         $this->copyMail($header, $body);
     }
     return parent::sendmailSend($header, $body);
 }