我已经配置了一个php页面,用于在按下提交按钮后发送电子邮件,
if(isset($_POST['submit']))
{
// impostazioni per invio email
$to = $query2['email']; // email destinatario
$from = "info@xxxx.it". "\r\n" ; // email mittente
$subject = $oggetto;
$message = $_POST['testoconferma'];
$headers = "From:" . $from;
mail($to,$subject,$message,$headers)
我无法弄清楚为什么一旦按下它就不会发送电子邮件。 我忘记了什么吗?