Salve a tutti,
ho creato una semplicissima pagina di test, con il seguente codice:
Codice PHP:
<?php
$to = "example@domain.ext";
$subject = "This is the subject";
$message = "This is the message";
echo mail($to, $subject, $message) ? "ok" : "error";
?>
Mi restituisce sempre "error".
La cosa strana è che, lasciando il campo $to vuoto:
Codice PHP:
<?php
$to = "";
$subject = "This is the subject";
$message = "This is the message";
echo mail($to, $subject, $message) ? "ok" : "error";
?>
mi restituisce "ok".
Qualcuno ha mai avuto un simile problema prima?
Grazie a tutti!