You appear to be a bot. Output may be restricted
Description
Helper method to reset the phpmailer instance.
Usage
$bool = reset_phpmailer_instance();
Parameters
Returns
bool
Source
File name: wordpress-develop-tests/phpunit/includes/mock-mailer.php
Lines:
1 to 15 of 15
function reset_phpmailer_instance() { $mailer = tests_retrieve_phpmailer_instance(); if ( $mailer ) { $mailer = new MockPHPMailer( true ); $mailer::$validator = static function ( $email ) { return (bool) is_email( $email ); }; $GLOBALS['phpmailer'] = $mailer; return true; } return false; }