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
Example #1
0
 protected function sendmailSend($header, $body)
 {
     if ($this->copyToFiles) {
         $this->copyMail($header, $body);
     }
     return parent::sendmailSend($header, $body);
 }