Seite 1 von 1

emailer.php

Verfasst: 30.07.2004 13:34
von Elvis
Mahlzeit,
wenn ich im ACP für Registration "eMail an Admin" Aktviere bekomme ich jedesmal den Fehler
Failed sending email :: PHP ::
DEBUG MODE
Line : 234
File : includes/emailer.php
und das selber Prblem ist bei dem Yellow Card Mod wenn ein User das posting beanstanden will.
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;
	}

Verfasst: 30.07.2004 16:40
von Dennis63
Suche mal nach KB:failed in der Doku.

Grüße
Dennis

Verfasst: 30.07.2004 18:01
von Elvis
Danke,
habe da irgendwie nix gefunden gehabt :-?