-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-to-email.php
68 lines (60 loc) · 1.47 KB
/
form-to-email.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
if(!isset($_POST['submit']))
{
// This page should not be accessed directly. Need to submit the form.
echo "Please submit the form!";
exit;
}
$firstName = $_POST['firstName'];
$lastName = $_POST['lastName'];
$emailAddress = $_POST['emailAddress'];
$comments = $_POST['comments'];
// Validate input fields
if(empty($firstName)||empty($lastName)||empty($emailAddress))
{
echo "Please enter your name and email address!";
exit;
}
if(IsInjected($emailAddress))
{
echo "This E-Mail address is not valid!";
exit;
}
$email_from = '[email protected]';
$email_subject = "New message";
$email_body = "You have received a new message from $firstName $lastName.\n".
"Here is the message:\n\n".
$comments;
$to = "[email protected]";
$headers = "From: $email_from \r\n";
$headers .= "Reply-To: $emailAddress \r\n";
// Send email
$result = mail($to, $email_subject, $email_body, $headers);
if(result) {
$redirect_to = dirname($_SERVER['PHP_SELF']);
header("Location: .$redirect_to");
}
exit();
// Function to validate against any email injection attempts
function IsInjected($str)
{
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str))
{
return true;
}
else
{
return false;
}
}
?>