Please help!
All the mails I send using the PHP mail function have the
line "Attention: no reply address,it was generated automaticly"
on top of the message body. Does anyone know how to suppress this?
Thanks a lot in advance!
My script:
$subject = "My Subject";
$message = "This is the message";
$sender = "schatzmann@web.de";
$recipient = "schatzmann@web.de";
$headers = "From: $sender \r\n";
$headers .= "Reply-To: $sender \r\n";
$headers .= "Return-Path: $sender \r\n";
mail($recipient, $subject, $message, $headers);
echo "Mail sent!";