PHPMailer\PHPMailer
PHPMailer::clearReplyTos
Clear all ReplyTo recipients.
Method of the class: PHPMailer{}
No Hooks.
Returns
null. Nothing (null).
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->clearReplyTos();
PHPMailer::clearReplyTos() PHPMailer::clearReplyTos code WP 7.0
public function clearReplyTos()
{
$this->ReplyTo = [];
$this->ReplyToQueue = [];
}