AlternC/bureau/admin/adm_email.php

82 lines
2.7 KiB
PHP
Raw Normal View History

2012-08-22 14:02:37 +00:00
<?php
/*
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2000-2012 by the AlternC Development Team.
https://alternc.org/
2012-08-22 14:02:37 +00:00
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Purpose of file: Show a form to edit a member
----------------------------------------------------------------------
*/
require_once("../class/config.php");
include("head.php");
if (!$admin->enabled) {
__("This page is restricted to authorized staff");
exit();
}
$fields = array (
"subject" => array ("post", "string", ""),
"message" => array ("post", "string", ""),
"from" => array ("post", "string", ""),
"submit" => array ("post", "string", ""),
2012-08-22 14:02:37 +00:00
);
getFields($fields);
?>
<h3><?php __("Send an email to all members"); ?></h3>
<?php
if ( !empty($submit) ) {
if ($admin->mail_all_members($subject,$message,$from)) {
2012-08-22 14:02:37 +00:00
$error=_("The email was successfully sent");
} else {
$error=_("There was an error");
}
}
if (isset($error) && $error) {
2013-10-18 09:59:03 +00:00
echo "<p class=\"alert alert-danger\">$error</p>";
2012-08-22 14:02:37 +00:00
}
?>
<form method="post" action="adm_email.php">
2013-02-04 08:42:06 +00:00
<table cellspacing="1" cellpadding="4" border="0" align="center" class='tedit'>
2012-08-22 14:02:37 +00:00
<tr>
2013-02-04 08:42:06 +00:00
<th align="right"><b><?php __("From");?></b></th>
2012-08-22 14:02:37 +00:00
<td><span><input type="text" name="from" size="45" maxlength="100" tabindex="2" value="<?php echo "no-reply@$L_FQDN" ?>" /></span></td>
</tr>
<tr>
2013-02-04 08:42:06 +00:00
<th align="right"><b><?php __("Subject");?></b></th>
2012-08-22 14:02:37 +00:00
<td><span><input type="text" name="subject" size="45" maxlength="100" tabindex="2" value="" /></span></td>
</tr>
<tr>
2013-04-23 23:32:55 +00:00
<th align="right" valign="top"> <span><b><?php __("Mail"); ?></b></span></th>
<td><span> <textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3"></textarea></span></td>
2012-08-22 14:02:37 +00:00
</tr>
<tr>
<td class="catBottom" align="center" colspan="2"><input type="submit" value="<?php __("Send");?>" name="submit" /></td>
</tr>
</table>
</form>
<?php include_once('foot.php');?>