-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendbyemail.php
52 lines (40 loc) · 1.34 KB
/
sendbyemail.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
<?php
$email_send = "[email protected]";
$user_password = "coniec22*";
$email_subject = "Contacto desde el sitio web";
$usuario_nombre = $_POST['name'];
$usuario_email = $_POST['email'];
$usuario_asunto = $_POST['subject'];
$usuario_mensaje = $_POST['message'];
$error = "";
try{
$html = " <!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<strong>Nombre: </strong> $usuario_nombre <br>
<strong>Email: </strong> $usuario_email <br>
<strong>Asunto: </strong> $usuario_asunto <br>
<strong>Mensaje: </strong> $usuario_mensaje
</body>
</html>";
$to = $email_send ;
$subject = $email_subject;
$message = "Nuevo";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= 'From: <[email protected]>' . "\r\n";
if (mail($to,$subject,$html,$headers)){
echo 1;
}
}
catch (Exception $e){
echo 0;
$error.="Tuvimos una excepcion! \n";
$error.= $e->getMessage();
$error.= $e->getLine();
}
?>