-
Notifications
You must be signed in to change notification settings - Fork 0
/
enviar.php
77 lines (62 loc) · 1.59 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
74
75
76
77
<?php
if($_GET["tipo"] == 1)
{
$destinatario = "[email protected]";
$assunto = "Nova inscrição";
$corpo = '
<html>
<head>
<title>Nova inscrição</title>
</head>
<body>
<table width="100%" border="0" cellpadding="4" cellspacing="4" id="gridCadastro">
<tr>
<td> </td>
</tr>
<tr>
<td>Nome do time:<br>
'.$_POST["nomeTime"].'
<br></td>
</tr>
<tr>
<td>Nome responsável:<br>
'.$_POST["nomeResponsavel"].'
<br></td>
</tr>
<tr>
<td>Endereço, Numero, Bairro, Cidade:<br>
'.$_POST["endereco"].'
<br></td>
</tr>
<tr>
<td>Telefones:<br>
'.$_POST["fone"].'
<br></td>
</tr>
<tr>
<td>E-mail:<br>
'.$_POST["email"].'
<br></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>
</html>
';
//para o envio em formato HTML
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html;
charset=iso-8859-1\r\n";
//endereço do remitente
$headers .= "From: Gol Solidário <[email protected]>\r\n";
//endereço de resposta, se queremos que seja diferente a do remitente
$headers .= "Reply-To: ".$_POST["email"]."\r\n";
//endereços que receberão uma copia $headers .= "Cc: [email protected]\r\n";
//endereços que receberão uma copia oculta
$headers .= "Bcc: [email protected],[email protected]\r\n";
mail($destinatario,$assunto,$corpo,$headers);
header("Location: cadastrook.html");
}
?>