6 * Description: Send admin email message to all account holders. <b>-><a href=/notifyall TARGET = "_blank">send now!</a><-</b>
8 * Author: Mike Macgirvin (Inital Author of the hubbwall Addon for the Hubzilla Project)
9 * Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus> (Port to Friendica)
12 require_once('include/Emailer.php');
14 function notifyall_install() {
15 logger("installed notifyall");
18 function notifyall_uninstall() {
19 logger("removed notifyall");
22 function notifyall_module() {}
24 function notifyall_plugin_admin(&$a, &$o) {
26 $o = '<div></div> <a href="' . z_root() . '/notifyall">' . t('Send email to all members') . '</a></br/>';
31 function notifyall_post(&$a) {
35 $text = trim($_REQUEST['text']);
39 $sitename = $a->config['sitename'];
41 if (!x($a->config['admin_name']))
42 $sender_name = sprintf(t('%s Administrator'), $sitename);
44 $sender_name = sprintf(t('%1$s, %2$s Administrator'), $a->config['admin_name'], $sitename);
46 if (! x($a->config['sender_email']))
47 $sender_email = 'noreply@' . $a->get_hostname();
49 $sender_email = $a->config['sender_email'];
51 $subject = $_REQUEST['subject'];
54 $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r", "\\n"),array( "", "\n"), $text))),ENT_QUOTES,'UTF-8'));
56 $htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br />\n"),$text)));
58 // if this is a test, send it only to the admin(s)
59 // admin_email might be a comma separated list, but we need "a@b','c@d','e@f
60 if ( intval($_REQUEST['test'])) {
61 $email = $a->config['admin_email'];
62 $email = "'" . str_replace(array(" ",","), array("","','"), $email) . "'";
64 $sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` in ( %s )", $email) : '');
66 $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
69 notice( t('No recipients found.') . EOL);
73 foreach($recips as $recip) {
77 'fromName' => $sender_name,
78 'fromEmail' => $sender_email,
79 'replyTo' => $sender_email,
80 'toEmail' => $recip['email'],
81 'messageSubject' => $subject,
82 'htmlVersion' => $htmlversion,
83 'textVersion' => $textversion
87 notice( t('Emails sent'));
91 function notifyall_content(&$a) {
95 $title = t('Send email to all members of this Friendica instance.');
97 $o = replace_macros(get_markup_template('notifyall_form.tpl','addon/notifyall/'),array(
99 '$text' => htmlspecialchars($_REQUEST['text']),
100 '$subject' => array('subject',t('Message subject'),$_REQUEST['subject'],''),
101 '$test' => array('test',t('Test mode (only send to administrator)'), 0,''),
102 '$submit' => t('Submit')