Es gibt E-Mail-Provider, die E-Mails mit Absender wordpress@… nicht zustellen, weil sie das für Spam halten. Hast du mal ein SMTP-Plugin ausprobiert?
Aha, danke. … ich habe dieses Plugin ausprobiert: https://de.wordpress.org/plugins/wp-mail-smtp/
Mit dem PHP Mailer gehen nur ein paar Mails raus.
Mit 1und1 braucht man für SMTP besondere Einstellungen, damit das klappt:
Mailer: Send all WordPress emails via SMTP
SMTP Host: mrvnet.kundenserver.de
SMTP Port: 25
Encryption: No
SMTP authentication: No
Jetzt erhalte ich als Admin auch eine Mail bei Registrierung von anderen Usern. Jedoch lädt WordPress bei Registrierung erstmal 10-20 Sekunden bis dann Mails verschickt werden. Auch nicht so schön.
Es gibt ja noch andere SMTP-Plugins, z.B. Easy WP SMTP.
Ich habe es jetzt ganz ohne Plugin gelöst. So gibt es zumindest keine Zeitverzögerung beim Versenden der Mails mehr:
Eingetragen in den wp-congig.php:
// SMTP
function smtp_wp_mail($phpmailer) {
$phpmailer->IsSMTP(); // telling the class to use SMTP
$phpmailer->Host = ’smtp.1und1.de‘; // set the SMTP server host
$phpmailer->Port = ‚465‘; // set the SMTP server port
$phpmailer->SMTPSecure = ’ssl‘; // enable SMTP via SSL
$phpmailer->SMTPAuth = true; // enable SMTP authentication
$phpmailer->Username = ‚Deine_E-Mail_Adresse‘; // set the SMTP account username
$phpmailer->Password = ‚Dein_Passwort‘; // set the SMTP account password
}