-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-contact.php
114 lines (101 loc) · 4.24 KB
/
page-contact.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
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
<?php
/*
Template Name: Contact
*/
?>
<?php
if(isset($_POST['submitted'])) {
if(trim($_POST['contactName']) === '') {
$nameError = 'Please enter your name.';
$hasError = true;
} else {
$fullName = trim($_POST['contactName']);
}
if(trim($_POST['email']) === '') {
$emailError = 'Please enter your email address.';
$hasError = true;
} else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
$emailError = 'You entered an invalid email address.';
$hasError = true;
} else {
$email = trim($_POST['email']);
}
if(trim($_POST['comments']) === '') {
$commentError = 'Please enter a message.';
$hasError = true;
} else {
if(function_exists('stripslashes')) {
$comments = stripslashes(trim($_POST['comments']));
} else {
$comments = trim($_POST['comments']);
}
}
$subject = trim($_POST['subject']);
if(!isset($hasError)) {
$emailTo = get_option('tz_email');
if (!isset($emailTo) || ($emailTo == '') ){
$emailTo = '[email protected]';
}
$subject = 'Contact Form Submission: '.$subject;
$body = "Name: $fullName \n\nEmail: $email \n\n$subject \n\nComments: $comments";
$headers = 'From: '.$fullName.' <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;
wp_mail($emailTo, $subject, $body, $headers);
$emailSent = true;
}
} ?>
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap clearfix contact-us">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<section class="hero">
<?php the_content(); ?>
</section>
<?php endwhile; endif; ?>
<div id="contact-form" class="hero">
<?php if(isset($emailSent) && $emailSent == true) { ?>
<div id="email-success">
<h4>Thanks, your email was sent successfully.</h4>
</div>
<?php } else { ?>
<div class="entry-content">
<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
<ul>
<li>
<label for="contactName">Name</label>
<input type="text" name="contactName" id="contactName" value="<?php echo $fullName; ?>" placeholder="enter your first and last name" />
<?php if ($nameError) {
echo '<p class="alert-error">'.$nameError.'</p>';
}
?>
</li>
<li>
<label for="email">Email address</label>
<input type="text" name="email" id="email" value="<?php echo $email; ?>" placeholder="[email protected]" />
<?php if ($emailError) {
echo '<p class="alert-error">'.$emailError.'</p>';
}
?>
</li>
<li>
<label for="subject">Subject</label>
<input type="text" name="subject" id="subject" value="<?php echo $_POST['subject']; ?>" placeholder="enter a subject here" />
</li>
<li>
<label for="commentsText">Message</label>
<textarea name="comments" id="commentsText" rows="7" cols="55" placeholder="enter your message"><?php echo $comments; ?></textarea>
<?php if ($commentError) {
echo '<p class="alert-error">'.$commentError.'</p>';
}
?>
</li>
<li>
<button type="submit" class="button">Send us your message!</button>
</li>
</ul>
<input type="hidden" name="submitted" id="submitted" value="true" />
</form>
</div>
<?php } ?>
</div><!-- #content -->
</div>
<?php get_footer(); ?>