oder anders:
Code: Alles auswählen
<?php
define('IN_PHPBB', true);
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
for ($i=0; $i<=5; $i++)
{
$empfaenger = ' möp@möp.de';
$betreff = 'Möp';
$nachricht = 'test';
$header = 'From: test@test.de' . "\r\n" .
'Reply-To: test@test.de' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
if (mail($empfaenger, $betreff, $nachricht, $header))
{
$j = 1;
}
}
if($j == 1)
{
message_die(INFORMATION, 'Erfolgreich.');
}
?>