ich habe hier im Board zwar einiges entdeckt zu meinem Problem, aber keine wirkliche Lösung. Ich versuchs noch mal. Gestern lief noch alles, jetzt auf einmal beim Schreiben einer PN oder beim Antworten auf Beiträge kommt dies:
Allgemeiner Fehler
Failed sending email ::
DEBUG MODE
Line : 225
File : /kunden/tina-sommer.de/xxxxxxxxx/xxxxx/includes/emailer.php
und so sieht es ein paar Zeilen davor und danach aus:
Code: Alles auswählen
$universal_extra = "MIME-Version: 1.0\nContent-type: text/plain; charset=" . $this->encoding . "\nContent-transfer-encoding: 8bit\nDate: " . gmdate('D, d M Y H:i:s', time()) . " UT\nX-Priority: 3\nX-MSMail-Priority: Normal\nX-Mailer: PHP\n";
$this->extra_headers = $universal_extra . trim($this->extra_headers);
if ( $this->use_smtp )
{
if ( !defined('SMTP_INCLUDED') )
{
include($phpbb_root_path . 'includes/smtp.' . $phpEx);
}
$result = smtpmail($this->address, $this->subject, $this->msg, $this->extra_headers);
}
else
{
$result = @mail($this->address, $this->subject, $this->msg, $this->extra_headers);
}
if ( !$result )
{
message_die(GENERAL_ERROR, 'Failed sending email :: ' . $result, '', __LINE__, __FILE__);
}
return true;
}Danke mahou