mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 04:23:42 +00:00
send mail to admin(s) in test more
This commit is contained in:
parent
b59f2fab49
commit
08546e30f9
1 changed files with 13 additions and 7 deletions
|
@ -47,6 +47,7 @@ function notifyall_post(&$a) {
|
|||
$sender_email = 'noreply@' . $a->get_hostname();
|
||||
else
|
||||
$sender_email = $a->config['sender_email'];
|
||||
|
||||
$subject = $_REQUEST['subject'];
|
||||
|
||||
|
||||
|
@ -54,8 +55,13 @@ function notifyall_post(&$a) {
|
|||
|
||||
$htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br />\n"),$text)));
|
||||
|
||||
$sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` = '%s' ", get_config('system','admin_email')) : '');
|
||||
|
||||
// if this is a test, send it only to the admin(s)
|
||||
// admin_email might be a comma separated list, but we need "a@b','c@d','e@f
|
||||
if ( intval($_REQUEST['test'])) {
|
||||
$email = $a->config['admin_email'];
|
||||
$email = "'" . str_replace(array(" ",","), array("","','"), $email) . "'";
|
||||
}
|
||||
$sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` in ( %s )", $email) : '');
|
||||
|
||||
$recips = q("SELECT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
|
||||
|
||||
|
|
Loading…
Reference in a new issue