Hola tengo un formulario de contacto flash el cual sube el adjunto a una carpeta en mi hostin pero no me llega el mail.
submit.php:
<?php
$recipient = "[email protected]"; //aca puse bien mi email y no funca
$name = $_POST["name"];
$email = $_POST["e-mail"];
$subject = $_POST["subject"];
$message = $_POST["mes"];
$department = $_POST["department"];
$file = $_POST["file"];
$cont = " Department: ".$department."\r\n\n Here is the message: ".$message."\r\n\n Attachment: ".$file;
$headers = 'From: '.$name.' <'.$email.'>' . "\r\n\n";
if (mail($recipient, $subject, $cont, $headers)) {
echo("status=ok");
} else {
echo("status=failed");
}
?>
upload-cv.php
<?php
move_uploaded_file($_FILES['Filedata']['tmp_name'], "./files/".$_FILES['Filedata']['name']);
chmod("./files/".$_FILES['Filedata']['name'], 0777);
?>