Questo è il codice ma continua a non funzionare, ripeto riuscivo a ricevere le mail in passato :
Codice PHP:
<?php
// Check for empty fields
if(empty($_POST['name']) ||
empty($_POST['email']) ||
empty($_POST['message']) ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}
$name = $_POST['name'];
$email_address = $_POST['email'];
$message = $_POST['message'];
// Create the email and send the message
$to = '****@hotmail.com'; // Add your email address in between the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "LabInfo FormContatto: $name";
$email_body = "Hai ricevuto un nuovo messaggio da Labinfo.\n\n"."Dettaglio :\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessaggio:\n$message";
$headers = "From: ****@noreply.com\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address";
if (mail($to,$email_subject,$email_body,$headers))
echo 'email inviata correttamente';
else echo 'Errore!';
?>
Grazie