You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
PHP
77 lines
1.6 KiB
PHP
<?php
|
|
//
|
|
// File: sendmail.php
|
|
//
|
|
// Template File: sendmail.tpl
|
|
//
|
|
// Template Variables:
|
|
//
|
|
// tMessage
|
|
// tFrom
|
|
// tSubject
|
|
// tBody
|
|
//
|
|
// Form POST \ GET Variables:
|
|
//
|
|
// fTo
|
|
// fSubject
|
|
// fBody
|
|
//
|
|
require ("./variables.inc.php");
|
|
require ("./config.inc.php");
|
|
require ("./functions.inc.php");
|
|
include ("./languages/" . $CONF['language'] . ".lang");
|
|
|
|
$SESSID_USERNAME = check_session ();
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "GET")
|
|
{
|
|
include ("./templates/header.tpl");
|
|
include ("./templates/menu.tpl");
|
|
include ("./templates/sendmail.tpl");
|
|
include ("./templates/footer.tpl");
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "POST")
|
|
{
|
|
$fTo = $_POST['fTo'];
|
|
$fSubject = $_POST['fSubject'];
|
|
$fBody = $_POST['fBody'];
|
|
$fHeaders = "From: " . $SESSID_USERNAME . "\n";
|
|
|
|
if (!empty($PALANG['charset']))
|
|
{
|
|
$fSubject = encode_header ($_POST['fSubject'], $PALANG['charset']);
|
|
$fHeaders .= "MIME-Version: 1.0\n";
|
|
$fHeaders .= "Content-Type: text/plain; charset=" . $PALANG['charset'] . "\n";
|
|
$fHeaders .= "Content-Transfer-Encoding: 8bit\n";
|
|
}
|
|
|
|
if (empty ($fTo) or !check_email ($fTo))
|
|
{
|
|
$error = 1;
|
|
$tTo = $fTo;
|
|
$tSubject = $fSubject;
|
|
$tBody = $fBody;
|
|
$tMessage = $PALANG['pSendmail_to_text_error'];
|
|
}
|
|
|
|
if ($error != 1)
|
|
{
|
|
if (!mail ($fTo, $fSubject, $fBody, $fHeaders))
|
|
{
|
|
$tMessage = $PALANG['pSendmail_result_error'];
|
|
}
|
|
else
|
|
{
|
|
$tMessage = $PALANG['pSendmail_result_succes'];
|
|
}
|
|
}
|
|
|
|
include ("./templates/header.tpl");
|
|
include ("./templates/menu.tpl");
|
|
include ("./templates/sendmail.tpl");
|
|
include ("./templates/footer.tpl");
|
|
}
|
|
?>
|