Hello there,
I need some help with smtp. My configuration doesn't seem to want to work with sending mail. When I subscribe I get the following error on the subscibe page:
Sorry, sending the email to request your confirmation failed, please click "Reload" to try again. If it still does not work, it may be because you are listed on our "Black List", which means that you cannot receive emails from our newsletter system. In that case, please contact the administrator.
When I look at the event log the following error is logged:
Mailer Error: Language string failed to load: connect_host
I then try to "send a message" (at test msg). It fails and the event logs give me this error:
Mailer Error: SMTP Error: Could not connect to SMTP host
I have configured my config.php file smtp lines as follows:
# To use a SMTP please give your server hostname here, leave it blank to use the standard
# PHP mail() command.
define("PHPMAILERHOST",'smtpout.secureserver. net');
# 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 = 'userATmydomain';
#$phpmailer_smtppassword = 'psswd';
$phpmailer_smtpport = '80'
I have tried uncommenting the $phpmailer_smtpuser and smtppassword lines but this doesn't seem to make a difference.
Any suggestions are greatly appreciated.
--Danica