-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.php
33 lines (30 loc) · 1.03 KB
/
contacto.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
<?php
// "nombre":nombre.value,
// "empresa":empresa.value,
// "email":email.value,
// "telefono":telefono.value,
// "consulta":consulta.value
// if ($response != null && $response->success) {
$nombre = $_POST['nombre'];
$empresa = $_POST['empresa'];
$mensaje = $_POST['consulta'];
$email = $_POST['email'];
$telefono = $_POST['telefono'];
$para = '[email protected]';
$titulo = 'Mensaje desde www.legalsur.cl';
$header = 'From: '.$email.' ';
$msjCorreo = "Nombre: $nombre\n E-Mail: $email\n telefono: $telefono\n empresa: $empresa\n Mensaje:\n $mensaje";
if(!empty($mensaje) && !empty($empresa) && !empty($email))
{
mail($para, $titulo, $msjCorreo, $header);
}
// }
// $nombre = $_POST['nombre'];
// $email = $_POST['email'];
// $mensaje = $_POST['mensaje'];
// $para = '[email protected]';
// $titulo = 'ASUNTO DEL MENSAJE';
// $header = 'From: '.$email.' ';
// $msjCorreo = "Nombre: $nombre\n E-Mail: $email\n Mensaje:\n $mensaje";
// mail($para, $titulo, $msjCorreo, $header);
?>