-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactForm.php
More file actions
118 lines (97 loc) · 4.31 KB
/
Copy pathcontactForm.php
File metadata and controls
118 lines (97 loc) · 4.31 KB
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
<!-- /*
//To start and run a php program go to => http://localhost/phpSandbox/variables.php
local host / file path on local server http://localhost/theNameOfFolder/fileName.php
1. start XAAMP LOCAL SERVER
2. navigate to OS. > XAAMP > htdocs then make any kind of php folder/file you wish
3. right click and open up VS Code and start to program
local host / file path on local server http://localhost/phpSandbox/contactForm.php
*/ -->
<?php
//message vars
$msg = "";
$msgClass = "";
//check for submit
if(filter_has_var(INPUT_POST, 'submit')){
//get form data
$name = htmlspecialchars($_POST['name']);
$email = htmlspecialchars($_POST['email']);
$message = htmlspecialchars($_POST['message']);
//check required fields
if(!empty($email) && !empty($name) && !empty($message)){
//passed
//check email
if(filter_var($email, FILTER_VALIDATE_EMAIL) === false){
//failed
$msg = 'Please use a valid email';
$msgClass = 'alert-danger';
} else {
//passed
//recipient email
$toEmail = 'support@chasesinghofen.com';
$subject = 'Contact Request from ' .$name;
$body = '<h2>Contact request</h2>
<h4>Name</h4><p>'.$name.'</p>
<h4>Name</h4><p>'.$email.'</p>
<h4>Name</h4><p>'.$message.'</p>';
//email headers
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .="Contect-Type:text/html;charset=UTF-8" . "\r\n";
//additional headers
$headers .= "From: " .$name. "<".$email.">". "r\n\"";
if(mail($toEmail, $subject, $body, $headers)){
//email sent
$msg = 'your email has been sent';
$msgClass = 'alert-success';
} else {
//failed
$msg = 'your email was not sent';
$msgClass = 'alert-danger';
}
}
} else {
//failed
$msg = 'Please fill all fields';
$msgClass = 'alert-danger';
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="contactForm.php">My Website</a>
</div>
</div>
</nav>
<div class="container">
<?php if($msg !=''): ?>
<div class="alert <?php echo $msgClass; ?>"><?php echo $msg; ?></div>
<?php endif; ?>
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
<div class="form-group">
<label for="">Name</label>
<input type="text" name="name" class="form-control" value="<?php echo isset($_POST['name']) ? $name : ''; ?>">
</div>
<div class="form-group">
<label for="">Email</label>
<input type="text" name="email" class="form-control" value="<?php echo isset($_POST['email']) ? $email : ''; ?>">
</div>
<div class="form-group">
<label for="">Message</label>
<textarea name="message" class="form-control"><?php echo isset($_POST['message']) ? $message : ''; ?></textarea>
</div>
<br>
<button type="submit" name="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>