-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontato.php
29 lines (25 loc) · 955 Bytes
/
contato.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
<?php
date_default_timezone_set("BRAZIL/EAST");
include_once "flash.php";
if($_SERVER['REQUEST_METHOD'] == 'POST'){
if(isset($_POST['enviar'])){ #Se cliquei no botão de enviar/logar
$nome = addslashes($_POST['nome']);
$email = addslashes($_POST['email']);
$assunto = "Contato feito pelo site";
$msg = addslashes($_POST['mensagem']);
$to = "[email protected]";
$subject = "Contato - ".$assunto;
$body = "Nome: ".$nome."\r\n"."Email: ".$email."\r\n"."Mensagem: ".$msg;
$header = "From:[email protected]"."\r\n"."Reply-To:".$email."\r\n"."X-Mailer:PHP/".phpversion();
//função mail():::
$enviando = mail($to,$subject,$body,$header);
if($enviando){
flash("mensagem", "Mensagem enviada com sucesso!", "success");
header("Location: index.php#contato");
} else {
flash("mensagem", "Falha ao enviar mensagem!", "danger");
header("Location: index.php#contato");
}
}
}
?>