www/includes/contact.php

34 lines
909 B
PHP
Raw Normal View History

2019-07-13 15:01:11 +00:00
<?php
include "../config.php";
$name = $_GET['contact_name'];
$email = $_GET['email_address'];
$subject = $_GET['type'];
$body = $_GET['message'];
$tv = $_GET['tv'];
$destination_addr = "ubergeek@thunix.net";
$subject = "Contact Form";
$mailbody = "The following submission via the contact form was recieved:
Real Name: $name
Email Address: $email
2019-07-13 15:51:48 +00:00
Type: $subject
Message: $body";
2019-07-13 15:01:11 +00:00
if ( $tv != "tildeverse" ) {
print "Spam attempt";
2019-07-13 15:13:32 +00:00
header("Location: $site_root/?page=success1");
2019-07-13 15:01:11 +00:00
die();
}
2019-07-13 16:13:02 +00:00
shell_exec("echo '$mailbody' | /usr/bin/mail -s '$subject' $destination_addr ");
2019-07-13 15:01:11 +00:00
// In the future, here, we *should* be able to build a process that
// somehow auto-verifies the user, and instead of email, it'll kick off the new user process here
2019-07-13 15:13:32 +00:00
header("Location: $site_root/?page=success2");
2019-07-13 15:01:11 +00:00
die()
?>