PHPMailer\PHPMailer
PHPMailer::alternativeExists
Check if this message has an alternative body set.
Method of the class: PHPMailer{}
No Hooks.
Returns
true|false.
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->alternativeExists();
PHPMailer::alternativeExists() PHPMailer::alternativeExists code WP 7.0
public function alternativeExists()
{
return !empty($this->AltBody);
}