-
Notifications
You must be signed in to change notification settings - Fork 0
/
processa_envio.php
171 lines (112 loc) · 5.54 KB
/
processa_envio.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
// print_r($_POST);
require "./libs/PHPMailer/Exception.php";
require "./libs/PHPMailer/OAuth.php";
require "./libs/PHPMailer/PHPMailer.php";
require "./libs/PHPMailer/POP3.php";
require "./libs/PHPMailer/SMTP.php";
//Instanciando os sNamespaces
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
class Mensagem{
private $para = null;
private $assunto = null;
private $mensagem = null;
public $status = array(
'codigo_status' => null,
'descricao_status' => '',
);
public function __get($attr){
return $this->$attr;
}
public function __set($attr, $value){
$this->$attr = $value;
}
public function mensagemValida(){
if( empty($this->para) || empty($this->assunto) || empty($this->mensagem)){
return false;
}
else return true;
}
}
$mensagem = new Mensagem();
$mensagem->__set('para' , $_POST['para']);
$mensagem->__set('assunto' , $_POST['assunto']);
$mensagem->__set('mensagem' , $_POST['mensagem']);
// print_r($mensagem);
//criar objeto PHPMAILER
if(!$mensagem->mensagemValida()){
echo "Mensagem não é válida";
header("Location: index.php?teste=erro");
}
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = false; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp.gmail.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = 'joao_gomes!2020'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` also accepted
$mail->Port = 587; // TCP port to connect to
//Recipients
$mail->setFrom('[email protected]', 'Joao Emails');
$mail->addAddress($mensagem->__get('para')); // Add a recipient
// $mail->addAddress('[email protected]'); // Name is optional
// $mail->addReplyTo('[email protected]', 'Information');
// $mail->addCC('[email protected]'); //copia
// $mail->addBCC('[email protected]'); //copia oculta
// Attachments - Anexo
// $mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $mensagem->__get('assunto');
$mail->Body = $mensagem->__get('mensagem');
$mail->AltBody = 'È necessario utilizar um client que suport HTML para ter acesso total ao conteúdo dessa mensagem';
$mail->send();
$mensagem->status['codigo_status'] = 1;
$mensagem->status['descricao_status'] = 'E-Mail enviado com secesso';
} catch (Exception $e) {
$mensagem->status['codigo_status'] = 2;
$mensagem->status['descricao_status'] = 'Não foi possível enviar este e-mail! Por favor tente novamente mais tarde. Detalhes do erro: ' . $mail->ErrorInfo;
//alguma lógica que armazene o erro para posterior análise por parte do programador
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>App Mail Send</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="py-3 text-center">
<img class="d-block mx-auto mb-2" src="logo.png" alt="" width="72" height="72">
<h2>Send Mail</h2>
<p class="lead">Seu app de envio de e-mails particular!</p>
</div>
<div class="row">
<div class="col-md-12">
<?php if($mensagem->status['codigo_status'] == 1) : ?>
<div class="container">
<h1 class="display-4 text-success">Sucesso</h1>
<p><?= $mensagem->status['descricao_status'] ?></p>
<a href="index.php" class="btn btn-success btn-lg mt-5 text-white">Voltar</a>
</div>
<?php endif ?>
<?php if($mensagem->status['codigo_status'] == 2) : ?>
<div class="container">
<h1 class="display-4 text-danger">Ups!</h1>
<p><?= $mensagem->status['descricao_status'] ?></p>
<a href="index.php" class="btn btn-danger btn-lg mt-5 text-white">Voltar</a>
</div>
<?php endif ?>
</div>
</div>
</div>
</body>
</html>