-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenviar-contacto.php
50 lines (40 loc) · 1.45 KB
/
enviar-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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<HTML>
<HEAD>
<TITLE>Redireccionado</TITLE>
<!-- bootstrap core javascript -->
<script src="resource/js/bootstrap.min.js"></script>
<!-- Bootstrap Core CSS -->
<link href="resource/css/bootstrap.min.css" rel="stylesheet">
<SCRIPT LANGUAGE="JavaScript">
function redireccionar() {
var timer = setTimeout(function() {
window.location='https://jgmurillo10.github.io/#contact'
}, 10);
// setTimeout("location.href=index.html", 3000);//Aqui debes poner a que pagina quieres redireccionar
}
</SCRIPT>
</HEAD>
<BODY onLoad="redireccionar()">
<?php
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$empresa = $_POST['empresa'];
$header = 'From: ' . $mail . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $nombre . ",
de la empresa " . $empresa . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'El cliente ' . $nombre . ' desea ponerse en contacto.';
mail($para, $asunto, utf8_decode($mensaje), $header);
// echo "Tu email ha sido enviado de forma exitosa!, espera 3 segundos";
?>
<div class="alert alert-success">
Su mensaje se ha recibido correctamente!, en unos segundos le redireccionaremos.
</div>
</BODY>
</HTML>