Hello everybody, I have the following code wich work on some server and does not work in an other:
$Name = "myname"; //senders name
$email_sender = "
[email protected]"; //senders e-mail adress
$recipient = $email; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email_sender . ">\r\n";
$status = mail($recipient, $subject, $mail_body, $header);
print('ENVOI '. $status);
the $status variable is true but i dont see any email.