a mi me sale el codigo:
Código PHP:
Ver original<?php
if(isset($_POST['submit'])) {
$subject = "What are you thinking submission!";
// data the visitor provided
$name_field = filter_var($_POST['name'], FILTER_SANITIZE_STRING
); $email_field = filter_var($_POST['email'], FILTER_VALIDATE_EMAIL
); $comment = filter_var($_POST['comment'], FILTER_SANITIZE_STRING
);
//constructing the message
$body = " From: $name_field\n\n E-Mail: $email_field\n\n Message:\n\n $comment";
// ...and away we go!
mail($to, $subject, $body);
// redirect to confirmation
header('Location: http://www.movil-cargo.com/confirmation.html');
} else {
// handle the error somehow
}
?>
y supongo que para que esto pase debes estar programado algo mal XD si o algún problema con la configuracion de tu php... algunos planes no permite el servicio de mail send creo XD