<?php
/**
* Install instructions
* @package MiaCMS
* @author MiaCMS see README.php
* @copyright see README.php
* See COPYRIGHT.php for copyright notices and details.
* @license GNU/GPL Version 2, see LICENSE.php
* MiaCMS is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2 of the License.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
// Test to see if the user has submitted the survey
if (isset($_POST['name'])) {
// Include common.php
require_once( 'common.php' );
// Collect the survey information
$name = mosGetParam( $_POST, 'name', '' );
$email = mosGetParam( $_POST, 'email', '' );
$company = mosGetParam( $_POST, 'company', '' );
$category = mosGetParam( $_POST, 'category', '' );
$comments = mosGetParam( $_POST, 'comments', '' );
// Check for user's name and a valid email address
if (empty($name) || empty($email) || (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email))) {
$response = 0;
}
else {
$response = 1;
}
//Build standard email headers
$headers = "From: $email" . "\r\n"
. "Reply-To: $email" . "\r\n"
. 'X-Mailer: PHP/' . phpversion();
// Check to see if the user left any comments and process
if ($response && $comments) {
$subject = "MiaCMS Installation - User Comments";
$message = "$name left some comments on the installation survey. "
. "Here are the comments:\n"
. "\n"
. "Name: $name\n"
. "Email: $email\n"
. "Category: $category\n"
. "Company: $company\n"
. "Comments: $comments";
// OK lets send the feedback email
// No error checking on the send since this is just a nice to have
mail('hide@address.com', $subject, $message, $headers);
}
}
//Redirect user to the frontpage
Header('Location: ../index.php');
?>