WordPress Version: 6.2
/**
* Corrects From host on outgoing mail to match the site domain.
*
* @since MU (3.0.0)
*
* @param PHPMailer $phpmailer The PHPMailer instance (passed by reference).
*/
function fix_phpmailer_messageid($phpmailer)
{
$phpmailer->Hostname = get_network()->domain;
}