-
Notifications
You must be signed in to change notification settings - Fork 0
/
validar.php
80 lines (64 loc) · 1.89 KB
/
validar.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
$GetPost = filter_input_array(INPUT_POST,FILTER_DEFAULT);
//Variáveis locais
$nome = $GetPost['nome'];
$email = $GetPost['email'];
$mensagem = $GetPost['mensagem'];
require 'assets/Estilos/PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer(true);
//Linguagem Português
$mail->SetLanguage('br');
//Aceitar caracteres especiais
$mail->CharSet = 'UTF-8';
//Define que será usado SMTP
$mail->IsSMTP();
$mail->SMTPDebug = 0;
//Enviar e-mail em HTML
$mail->isHTML(true);
//Configurações
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'tls';
//Nome do Servidor
$mail->Host = 'smtp.gmail.com'; /* smtp.mailtrap.io */
//Porta de Saída E-mail
$mail->Port = 587; /* 465 */
//Usuário e senha do servidor OU Dados do E-mail de saída
$mail->Username = 'missaotcc2018@gmail.com'; /* 546df5cd150a61 */
$mail->Password = 'missaotcc'; /* c96352759d4052 */
//E-mail remetente (mandando)
$mail->From = 'missaotcc2018.art@gmail.com';
// Nome remetente
$mail->FromName = $nome;
//Destinatário (recebendo)
$mail->AddAddress('mitoafro.art@gmail.com', 'Equipe MitoAfro');
//E-mail remetente resposta (usuário msm)
$mail->AddReplyTo($email, $nome);
//Assunto da mensagem
$mail->Subject = $nome;
//Corpo da Mensagem
$mail->Body =
'<p><b>Nome: </b>' .($nome) .'</p>
<p><b>Email: </b>' . ($email) . '</p>
<p><b>Mensagem: </b> ' .($mensagem) .'</p>'; //Em HTML
//Corpo da Mensagem em texto
$mail->AltBody = 'Conteúdo do E-mail em texto';
//Verificar se foi enviado ou não
if($mail->send())
{
echo'
<script>
$(document).ready(function(){
swal("Obrigado '.($nome).'...", "Sua mensagem foi enviada com sucesso! <br/>Retornaremos em breve...", "success")
});
</script>';
}
else
{
echo'
<script>
$(document).ready(function(){
swal("Ops '.($nome).'...","Houve um erro ao enviar a mensagem, tente novamente!", "error");
});
</script>';
}
?>