-
Notifications
You must be signed in to change notification settings - Fork 0
/
enviar.php
73 lines (41 loc) · 1.44 KB
/
enviar.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
<?php
$email = $_GET['email'];
$nome = $_GET['nome'];
$reclamacao = $_GET['reclamacao'];
$assunto = $_GET['assunto'];
//$arquivo = $_FILES["arquivo"];
$corpoMSG = "<strong>Mensagem:</strong> $reclamacao <br>
<strong>Assunto:</strong> $assunto";
// chamando a classe PHP Mailer
require 'PHPMailer/PHPMailerAutoload.php';
//$destinatario = $_POST['destinatario'];
//$mail->AddBCC($email);
$mail = new PHPMailer;
//$mail->SMTPDebug = 3;
$mail-> IsSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = '[email protected]'; // seu SMTP username
$mail->Password = '#senha_email';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
$mail->setFrom = 'email';
//$mail->AddAttachment($arquivo['tmp_name'], $arquivo['name'] );
$mail->isHTML(true);
$mail-> Charset = 'UTF-8';
$mail->AddAddress($email, 'Eric Coutinho DSouza Ionic');
$mail->FromName = $nome;
$mail->Subject = 'Denuncia enviada pelo App IONIC';
$mail->Body = $corpoMSG;
$mail->AltBody = $corpoMSG;;
if(!$mail->send()) {
echo 'Não foi possível enviar o convite. ' ;
echo 'Erro: ' . $mail->ErrorInfo;
} else {
//ob_end_clean();
//echo 'Convite enviado com sucesso!';
//header("Location: convitevirtual.html");
}
?>
</body>
</html>