-
Notifications
You must be signed in to change notification settings - Fork 1
/
integration.php
56 lines (48 loc) · 2.06 KB
/
integration.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
<?php
$upnidToken = 'valid upnid token';
if(
!empty($_POST['hottok']) &&
$_POST['hottok'] == $upnidToken &&
$_POST['status'] == 'approved'
)
{
require('./database/connection.php');
$onlotoName = '';
$onlotoEmail = '';
$onlotoURL = '';
$clientName = $_POST['name'];
$clientEmail = $_POST['email'];
$clientPassword = $_POST['doc'];
try{
$register = "INSERT INTO users (name, email, password) VALUES ('" . $clientName . "', '" . $clientEmail . "', '" . $clientPassword . "');";
$registerResult = $conn->query($register);
$subject = 'Cadastro Onloto';
$message = '
<html>
<head>
<title>Parabéns, você recebeu o seu acesso à plataforma da Onloto!</title>
</head>
<body>
<p>
Agora você nunca mais contará com a sorte para a transformação da sua vida financeira!<br>
Acesse à Onloto com o seu acesso abaixo:<br><br>
<b>E-mail: </b>' . $clientEmail . '<br>
<b>Senha: </b>' . $clientPassword . '<br>
<b>URL: </b><a href="' . $onlotoURL . '">' . $onlotoURL . '</a>
</p>
</body>
</html>
';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: ' . $clientName . ' <' . $clientEmail . '>' . "\r\n";
$headers .= 'From: ' . $onlotoName . ' <' . $onlotoEmail . '>' . "\r\n";
$headers .= 'Cc: ' . $onlotoEmail . "\r\n";
$headers .= 'Bcc: ' . $onlotoEmail . "\r\n";
$sendMail = mail($clientEmail, $subject, $message, $headers);
}catch(Exception $e){
echo '';
}
$conn->close();
}
?>