Hallo,
bei folgendem Test Script kommt bei mir keine E-Mail, aber es wird auch kein Fehler angezeigt. Script sagt E-Mail wurde versendet.
bei folgendem Test Script kommt bei mir keine E-Mail, aber es wird auch kein Fehler angezeigt. Script sagt E-Mail wurde versendet.
PHP-Code:
<?php
error_reporting(E_ALL);
$to = 'markus@dokutv.net';
if(mail($to, 'Testing mail', 'This is a mailing test to see if PHP mail works.'))
{
echo 'Mail was sent by PHP';
}
else
{
echo 'PHP could not send the mail';
}
?>
Kommentar