forked from yanvolo/chalk_it_up
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback_sent.php
More file actions
29 lines (26 loc) · 853 Bytes
/
feedback_sent.php
File metadata and controls
29 lines (26 loc) · 853 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php
require "library.php";
needUserInfo();
printDeps();
?>
<title>Chalk it up!</title>
</head>
<body>
<div class="conatiner">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<?php printNav();
//Generate Message
#$from = "yanvolo@gmail.com";
#$to = "yanvolo@gmail.com";
#$body = filter_var($_POST['message'],FILTER_SANITIZE_SPECIAL_CHARS);
#$body = str_replace("\n.", "\n..", $body);
#$subject = filter_var($_POST['head'], FILTER_SANITIZE_SPECIAL_CHARS);
#mail("yanvolo@gmail.com","test subject","test body");
echo "Email server failed, we couldn't send your feed back :(";
?>
</div> </div>
</body>
</html>