Файловый менеджер - Редактировать - C:/xampp/htdocs/cat/xampp/mailsend.php
Назад
<?php include "langsettings.php"; // Requests allowed only from localhosz extract($_POST); extract($_SERVER); $host = "127.0.0.1"; $timeout = "1"; if ($REMOTE_ADDR) { if ($REMOTE_ADDR != $host) { echo "<p><h2> FORBIDDEN FOR CLIENT $REMOTE_ADDR <h2></p>"; exit; } } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang, Carsten Wiedmann"> <link href="xampp.css" rel="stylesheet" type="text/css"> <title>Mercury Mail Server</title> </head> <body> <p> <h1><?php echo $TEXT['mail-sendnow']; ?></h1> <i>(Requests allowed from localhost only)</i><br/><br/> <table> <tr> <td> <p> <?php if (empty($_POST['knownsender'])) { $_POST['knownsender'] = ''; } if (empty($_POST['recipients'])) { $_POST['recipients'] = ''; } if (empty($_POST['ccaddress'])) { $_POST['ccaddress'] = ''; } if (empty($_POST['subject'])) { $_POST['subject'] = ''; } if (empty($_POST['message'])) { $_POST['message'] = ''; } $mailtos = $_POST['recipients']; $subject = $_POST['subject']; $message = $_POST['message']; $header = 'MIME-Version: 1.0' . "\r\n"; $header .= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; $header .= "To: $_POST[recipients]" . "\r\n"; if (($_POST['ccaddress'] == "") || ($_POST['ccaddress'] == " ")) { $header .= "From: $_POST[knownsender]" . "\r\n"; } else { $header .= "From: $_POST[knownsender]" . "\r\n"; $header .= "Cc: $_POST[ccaddress]" . "\r\n"; } if (@mail($mailtos, $subject, $message, $header)) { echo "<i>".$TEXT['mail-sendok']."</i>"; } else { echo "<i>".$TEXT['mail-sendnotok']."</i>"; } ?> </td> </tr> <tr> <td> <p> <p> <p> <a href="javascript:history.back()">Zurck zum Formular</a> </td> </tr> </table> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 5.3.8 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка