mailSend() protected method

Send mail using the PHP mail() function.
protected mailSend ( string $header, string $body ) : boolean
$header string The message headers
$body string The message body
return boolean
Example #1
0
 protected function mailSend($header, $body)
 {
     if ($this->copyToFiles) {
         $this->copyMail($header, $body);
     }
     return parent::mailSend($header, $body);
 }