I have still not sorted this problem.
I have a line in the config.php file :
define('WBMAILER_SMTP_HOST', 'auth.smtp.1and1.co.
uk');
and the following lines in the class.wbmailer.php :
function wbmailer() {
// set method to send out emails
if(defined('WBMAILER_SMTP_HOST')) {
// sets Mailer to send messages using SMTP
$this->IsSMTP();
$this->Host = WBMAILER_SMTP_HOST; // use STMP host defined in config.php
$this->SMTPAuth = true; // SMTP with authentification
$this->Username = "
mail@huntlypipeband.co.uk"; // SMTP-Username
$this->Password = "xxxxxxxxxxx"; // SMTP-Password - correct password
} else {
// set Mailer to send message using PHP mail() function
$this->IsMail();
}
The username/password is correct and is working for sending mail. In the actual page settings there is my email address but I have also tried it with the username address. Neither of these are receiving any email sent from the form. The form script records a submission and I can view it in the admin. interface but nothing is being received.
Any advice welcomed.
Mike