che rapidità, mi daresti solo un ultima mano.?scusami..è una cosa gestita da php..quindi l'action devo metterla su php?
ma dove?
scusamii
<?php


$recipient = "xxx";
$subject = "FormMail";
$date = date( "d/m/Y - H:i:s");

$msg = "***********************************\nName: $nome\n";
$msg .= "email: $email\n";
$msg .= "oggetto: $oggetto\n\n";
$msg .= "message: $comment\n\n";
$msg .= "sent: $date";
mail($recipient, $subject, $msg, "From: <Un nuovo messaggio dal sito>");
mail($email, "write here the subject of the mail","Automatic Responder\n
************************************
la mail è stata mandata grazie
************************************\n
write here what u wont
", "From: <xxxxxxxx>");
?>