Ciao ragazzi/e,
vorrei un aiutino per risolvere un problema.
Ho scaricato questo pluging jQuery, è un form di contatti poup-up.

http://jenniferperrin.com/blog/jquer...form/#comments

Purtroppo non riesco a far andare l'invio, cioè mi spiego meglio, questo è il codice php:

<?php
$sendto = "mia-email@hotmail.it"; -----qui ho inserito la mia e-mail
$usermail = $_POST['email'];
$content = nl2br($_POST['msg']);

$subject = "Message from your site";
$headers = "From: " . strip_tags($usermail) . "\r\n";
$headers .= "Reply-To: ". strip_tags($usermail) . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html;charset=utf-8 \r\n";

$msg = "<html><body style='font-family:Arial,sans-serif;'>";
$msg .= "<h2 style='font-weight:bold;border-bottom:1px dotted #ccc;'>Message from your site</h2>\r\n";
$msg .= "

Sent by: ".$usermail."</p>\r\n";
$msg .= "

Message: ".$content."</p>\r\n";
$msg .= "</body></html>";


if(@mail($sendto, $subject, $msg, $headers)) {
echo "true";
} else {
echo "false";
}
?>


dove ho sbagliato???
vi ringrazio
un saluto a tutti