PHPMailer\PHPMailer
PHPMailer::clearReplyTos()
Clear all ReplyTo recipients.
{} It's a method of the class: PHPMailer{}
No Hooks.
Return
null
. Nothing.
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->clearReplyTos();
Code of PHPMailer::clearReplyTos() PHPMailer::clearReplyTos WP 6.0
public function clearReplyTos() { $this->ReplyTo = []; $this->ReplyToQueue = []; }