Alguien podria decirme que es lo que esta mal?
HTML
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Formulario</title>
</head>
<body>
<form action="mail.php" method="POST">
<p>Nombre</p> <input type="text" name="nombre">
<p>Email</p> <input type="text" name="email">
<p>Ciudad</p> <input type="text" name="ciudad">
<p>Mensaje</p><textarea name="message" rows="6" cols="25"></textarea><br />
<input type="submit" value="Enviar">
</form>
</body>
</html>
PHP
<?php
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$ciudad = $_POST['ciudad'];
$call = $_POST['call'];
$mensaje = $_POST['mensaje'];
$formcontent=" De: $name \n Email: $email \n Ciudad: $ciudad \n Mensaje: $mensaje";
$recipient = "[email protected]";
$subject = "Formulario de contacto";
$mailheader = "De: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Gracias!" . " -" . "<a href='inicio.html' style='text-decoration:none;color:#ff0099;'> regresar a la pagina principal</a>";
?>
Gracias por su tiempo