emailer.php
Verfasst: 30.07.2004 13:34
Mahlzeit,
wenn ich im ACP für Registration "eMail an Admin" Aktviere bekomme ich jedesmal den Fehler
meine phpBB Version ist 2.10 (kein Update)
Zeile von 230 bis 238
wenn ich im ACP für Registration "eMail an Admin" Aktviere bekomme ich jedesmal den Fehler
und das selber Prblem ist bei dem Yellow Card Mod wenn ein User das posting beanstanden will.Failed sending email :: PHP ::
DEBUG MODE
Line : 234
File : includes/emailer.php
meine phpBB Version ist 2.10 (kein Update)
Zeile von 230 bis 238
Code: Alles auswählen
if (!$db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Unable to update config table', '', __LINE__, __FILE__, $sql);
}
$board_config['sendmail_fix'] = 1;
$result = @mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers);
}
}
// Did it work?
if (!$result)
{
message_die(GENERAL_ERROR, 'Failed sending email :: ' . (($this->use_smtp) ? 'SMTP' : 'PHP') . ' :: ' . $result, '', __LINE__, __FILE__);
}
return true;
}