PHP Fatal error: Uncaught exception ‘phpmailerException’ with message ‘Invalid address: ‘ in /WP-INSTALL/wp-includes/class-phpmailer.php:948
My work-around is this, in case it helps your other customers.
No warranty, use at own risk. Go to the file: <your wp root dir>/wp-includes/pluggable.php around line 358
  /** * Filters the name to associate with the "from" email address. * * @since 2.3.0 * * @param string $from_name Name associated with the "from" email address. */ $from_name = apply_filters( 'wp_mail_from_name', $from_name ); //mb 20160905 $from_email='info@greenerhost.net'; $from_name='no-reply'; //end of mod $phpmailer->setFrom( $from_email, $from_name );    
 
--Mike

Leave a Reply

Your email address will not be published. Required fields are marked *