Hi Gregor,
Thanks for your fast response!
I also update all other plugins and my theme. I am not sure about the core version: I just updated Worpress. Is the core something separate?
I did the check you suggested: disable all plugins except WP Mail SMTP: still the same error.
I found a piece of code in my wp-config.php
related to phpmailer. It is placed there by my hosting company (Transip). To me it doesn’t seem to replace the PHPMailer class, it just changes a setting, right?
/** TransIP fix: sendmail does not support flags. This fix is needed in order to make mailing work. */
global $phpmailer;
if ((!is_object( $phpmailer ) || !is_a( $phpmailer, 'PHPMailer' )) &&
file_exists(ABSPATH . '/wp-includes/class-phpmailer.php') &&
file_exists(ABSPATH . '/wp-includes/class-smtp.php')) {
require_once ABSPATH . '/wp-includes/class-phpmailer.php';
require_once ABSPATH . '/wp-includes/class-smtp.php';
$phpmailer = new PHPMailer( true );
}
$phpmailer->UseSendmailOptions = false;