i just wanna post this experience here in case someone else encounter a similar problem:
I have installed the phplist on a 1und1 (German provider) webaccount and couldn't send emails:
- Code: Select all
Mailer Error: SMTP Error: Could not connect to SMTP host.
However, all the settings seemd fine. Some hours late i found out that the name resolution (DNS) does not work, therefore the smtp server couldn't be found.
I stated the IP address instead the host name and everything runs well. No idea why it is like that.
- Code: Select all
# To use a SMTP please give your server hostname here, leave it blank to use the standard
# PHP mail() command.
define("PHPMAILERHOST",'212.227.15.167');
# if you want to use smtp authentication when sending the email uncomment the following
# two lines and set the username and password to be the correct ones
$phpmailer_smtpuser = 'noreply@host.de';
$phpmailer_smtppassword = 'pswd';