-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.php
57 lines (35 loc) · 1.52 KB
/
process.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");
header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');
$from = "[email protected]";
$form_name = strip_tags($_POST['name']);
$form_email = strip_tags($_POST['email']);
$form_phone = strip_tags($_POST['phone']);
$form_message = strip_tags($_POST['message']);
$fecha = time();
$fechaFormateada = date("j/n/Y", $fecha);
$header = 'From: ' . $form_email . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$correoDestino = "[email protected]";
$textoEmisor = "MIME-VERSION: 1.0\r\n";
$textoEmisor .= "Content-type: text/html; charset=UTF-8\r\n";
$textoEmisor .= "From: Formulario creado por DarioBF - www.dariobf.com";
//Formateo el asunto del correo
$asunto = "Contacto WEB - " .$form_name;
//Formateo el cuerpo del correo
$cuerpo = " Enviado por: " . $form_name . ", a las " . $fechaFormateada . "";
$cuerpo .= " Teléfono de contacto: " . $form_phone . "";
$cuerpo .= " E-mail: " . $form_email . "";
$cuerpo .= " Comentario: " . $form_message;
// Envío el mensaje
mail($correoDestino, $asunto, utf8_decode($cuerpo), $header);
echo "<script>
alert('Su consulta fue enviada con exito!. Nos contactaremos a la brevedad');
window.location= 'index.html'
</script>";
?>