-
Notifications
You must be signed in to change notification settings - Fork 1
/
enviar.php
68 lines (59 loc) · 2.22 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
<?php
$nome = trim(@$_POST['nome']);
$email = trim(@$_POST['email']);
$assunto_user = trim(@$_POST['assunto']);
$mensagem = trim(@$_POST['mensagem']);
$enviar = @$_POST['enviar'];
$erros = 1;
global $email;
if($enviar){
if($nome == ""){
$erros++;
echo "<small class=\"erro\">*** O Campo nome esta vazio</small><br />";
} elseif(is_numeric($nome)) {
$erros++;
echo "<small class=\"erro\">*** Você digitou numero no campo nome</small><br />";
}
if($email == "") {
$erros++;
echo "<small class=\"erro\">*** O Campo email está vazio</small><br />";
}
if($assunto_user == ""){
$erros++;
echo "<small class=\"erro\">*** O Campo assunto esté vazio</small><br />";
}
if($mensagem == ""){
$erros++;
echo "<small class=\"erro\">*** O Campo mensagem esté vazio</small><br />";
}
$email = str_replace (" ", "", $email);
$email = str_replace ("/", "", $email);
$email = str_replace ("@.", "@", $email);
$email = str_replace (".@", "@", $email);
$email = str_replace (",", ".", $email);
$email = str_replace (";", ".", $email);
if(strlen($email)<8 || substr_count($email, "@")!=1 || substr_count($email, ".")==0) {
$erros++;
echo "<small class=\"erro\">*** Por favor, digite seu <b>e-mail</b> corretamente.</small><br />";
}
if($erros <= 1){
$seuemail = "[email protected], [email protected]";
$assunto = "contato do site";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $seuemail \r\n";
$conteudo = "<strong>Nome:</strong> $nome<br />";
$conteudo .= "<strong>Email:</strong> $email<br />";
$conteudo .= "<strong>Assunto:</strong> $assunto_user<br />";
$conteudo .= "<strong>Mensagem:</strong> $mensagem<br />";
$enviando = mail($seuemail, $assunto, $conteudo, $headers);
if($enviando) {
echo "Mensagem enviada com sucesso!";
echo "<script>alert(\"Mensagem enviada com sucesso!\")</script>";
echo "<script>window.location = \"index.php\"</script>";
} else {
echo "<p><b>$nome</b><br />Ouve um erro no envio, desculpe-nos pelo transtorno!!!</p>";
}
}
}
?>