mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 03:17:23 +08:00
init
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
require "include/bittorrent.php";
|
||||
dbconn();
|
||||
require_once(get_langfile_path());
|
||||
loggedinorreturn();
|
||||
if (get_user_class() < UC_SYSOP)
|
||||
permissiondenied();
|
||||
|
||||
$action = isset($_POST['action']) ? htmlspecialchars($_POST['action']) : '';
|
||||
|
||||
if ($action == "sendmail")
|
||||
{
|
||||
$email = htmlspecialchars(trim($_POST['email']));
|
||||
$email = safe_email($email);
|
||||
if (!check_email($email))
|
||||
stderr($lang_mailtest['std_error'], $lang_mailtest['std_invalid_email_address']);
|
||||
$title = $SITENAME.$lang_mailtest['text_smtp_testing_mail'];
|
||||
$body = <<<EOD
|
||||
{$lang_mailtest['mail_test_mail_content']}
|
||||
EOD;
|
||||
|
||||
sent_mail($email, $SITENAME, $SITEEMAIL, change_email_encode(get_langfolder_cookie(), $title), change_email_encode(get_langfolder_cookie(),$body), '', false, false, '', get_email_encode(get_langfolder_cookie()));
|
||||
|
||||
stderr($lang_mailtest['std_success'], $lang_mailtest['std_success_note']);
|
||||
}
|
||||
else
|
||||
{
|
||||
stdhead($lang_mailtest['head_mail_test']);
|
||||
print("<h1 align=\"center\">".$lang_mailtest['text_mail_test']."</h1>");
|
||||
print("<table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\n");
|
||||
print("<form method='post' action='mailtest.php'>");
|
||||
print("<input type='hidden' name='action' value='sendmail'>");
|
||||
tr($lang_mailtest['row_enter_email'], "<input type='text' name='email' size=35><br />".$lang_mailtest['text_enter_email_note'], 1);
|
||||
print("<tr><td colspan=\"2\" align=\"center\"><input type='submit' name='sendmail' value='".$lang_mailtest['submit_send_it']."'></td></tr>");
|
||||
print("</form></table>");
|
||||
stdfoot();
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user