Jetzt wollte ich für den Newsletter Versand auf smtp umstellen, aber ich bekomme immer einen Timeout Error.
Das sind die Angaben vom Provider:
Mailserver-Benutzername: mail@user.com
Posteingangsserver: web100.dogado.net
Postausgangsserver: web100.dogado.net (Server erfordert eine Authentifizierung)
Unterstützte eingehende Mail-Protokolle: POP3, POP3 over SSL/TLS, IMAP, IMAP over SSL/TLS
Unterstützte ausgehende Mail-Protokolle: SMTP
Um Nachrichten geschützt über SMTP zu senden, verwenden Sie den Port 465.
Das meine Einstellungen:
// Email specific settings (based on phpMailer)
$phpwcms['SMTP_FROM_EMAIL'] = 'user@mail'; // reply/from email address
$phpwcms['SMTP_FROM_NAME'] = '**Name**'; // reply/from name
$phpwcms['SMTP_HOST'] = 'web100.dogado.net'; // SMTP server (host/IP)
$phpwcms['SMTP_PORT'] = 465; // SMTP server port (default 25)
$phpwcms['SMTP_MAILER'] = 'smtp'; // mail method: mail (default), smtp, sendmail
$phpwcms['SMTP_USER'] = '*mail@user.com'; // default SMTP login (user) name
$phpwcms['SMTP_PASS'] = '***passwort**'; // default SMTP password
$phpwcms['SMTP_SECURE'] = 'tls'; // secure connection, phpMailer options: '', 'ssl' or 'tls'
$phpwcms['SMTP_AUTH'] = 1; // SMTP authentication, ON=1/OFF=0
$phpwcms['SMTP_AUTH_TYPE'] = 'LOGIN'; // sets SMTP auth type: LOGIN (default), PLAIN, NTLM, CRAM-MD5
$phpwcms['SMTP_REALM'] = ''; // SMTP realm, used for NTLM auth type
$phpwcms['SMTP_WORKSTATION'] = ''; // SMTP workstation, used for NTLM auth type
"SSL bei "SMTP_SECURE" funktioniert nicht.
Übersehe ich was?