PHPMailer\PHPMailer
PHPMailer::clearReplyTos()
Clear all ReplyTo recipients.
Method of the class: PHPMailer{}
No Hooks.
Return
null
. Ничего (null).
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->clearReplyTos();
PHPMailer::clearReplyTos() PHPMailer::clearReplyTos code WP 6.3
public function clearReplyTos() { $this->ReplyTo = []; $this->ReplyToQueue = []; }