Fix #470
This commit is contained in:
parent
d42843ad89
commit
43ce9c4138
|
@ -34,6 +34,7 @@ bureau/admin/adm_donosu.php -text
|
|||
bureau/admin/adm_dorenew.php -text
|
||||
bureau/admin/adm_dosu.php -text
|
||||
bureau/admin/adm_edit.php -text
|
||||
bureau/admin/adm_email.php -text
|
||||
bureau/admin/adm_list.php -text
|
||||
bureau/admin/adm_login.php -text
|
||||
bureau/admin/adm_mxaccount.php -text
|
||||
|
|
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
/*
|
||||
$Id: adm_email.php,v 1.1 2005/09/05 10:55:48 arnodu59 Exp $
|
||||
----------------------------------------------------------------------
|
||||
AlternC - Web Hosting System
|
||||
Copyright (C) 2005 by the AlternC Development Team.
|
||||
http://alternc.org/
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
Valentin Lacambre's web hosting softwares: http://altern.org/
|
||||
----------------------------------------------------------------------
|
||||
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
|
||||
----------------------------------------------------------------------
|
||||
Original Author of file: Benjamin Sonntag
|
||||
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", ""),
|
||||
);
|
||||
getFields($fields);
|
||||
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
<h3><?php __("Send an email to all members"); ?></h3>
|
||||
<?php
|
||||
|
||||
if ( !empty($submit) ) {
|
||||
if ($admin->mailallmembers($subject,$message,$from)) {
|
||||
$error=_("The email was successfully sent");
|
||||
} else {
|
||||
$error=_("There was an error");
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($error) && $error) {
|
||||
echo "<p class=\"error\">$error</p>";
|
||||
}
|
||||
|
||||
?>
|
||||
<form method="post" action="adm_email.php">
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td align="right"><b><?php __("From");?></b></td>
|
||||
<td><span><input type="text" name="from" size="45" maxlength="100" tabindex="2" value="<?php echo "no-reply@$L_FQDN" ?>" /></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><b><?php __("Subject");?></b></td>
|
||||
<td><span><input type="text" name="subject" size="45" maxlength="100" tabindex="2" value="" /></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top"> <span><b><?php __("Mail"); ?></b></span>
|
||||
<td><span> <textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3"></textarea></span>
|
||||
</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');?>
|
|
@ -53,6 +53,7 @@ if (isset($error) && $error) {
|
|||
<li class="lst1"><a href="adm_doms.php"><?php __("Manage installed domains"); ?></a></li>
|
||||
<li class="lst2"><a href="adm_defquotas.php"><?php __("Change the default quotas"); ?></a></li>
|
||||
<li class="lst1"><a href="adm_authip_whitelist.php"><?php __("Manage IP whitelist"); ?></a></li>
|
||||
<li class="lst2"><a href="adm_email.php"><?php __("Send an email to all members"); ?></a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
|
|
@ -216,6 +216,37 @@ class m_admin {
|
|||
}
|
||||
|
||||
|
||||
function mailallmembers($subject,$message,$from) {
|
||||
global $err,$mem,$cuid,$db;
|
||||
$err->log("admin","mailallmembers");
|
||||
if (!$this->enabled) {
|
||||
$err->raise("admin",1);
|
||||
return false;
|
||||
}
|
||||
$subject=trim($subject);
|
||||
$message=trim($message);
|
||||
$from=trim($from);
|
||||
|
||||
if (empty($subject) || empty($message) || empty($from) ){
|
||||
$err->raise("admin",16);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (checkmail($from) != 0) {
|
||||
$err->raise("admin",17);
|
||||
return false;
|
||||
}
|
||||
|
||||
@set_time_limit(1200);
|
||||
$db->query("select distinct mail from membres;");
|
||||
while ($db->next_record()) {
|
||||
// Can't do BCC due to postfix limitation
|
||||
mail($db->f('mail'), $subject, $message, null, "-f$from");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array with the known information about resellers (uid, login, number of accounts)
|
||||
* Does not include account 2000 in the list.
|
||||
|
|
Loading…
Reference in New Issue