]> git.mxchange.org Git - friendica-addons.git/blob - notifyall/notifyall.php
if a sender_email for the system is set, use this, else use noreply@...
[friendica-addons.git] / notifyall / notifyall.php
1 <?php
2
3 /**
4  *
5  * Name: Notifyall
6  * Description: Send admin email message to all account holders. <b>-><a href=/notifyall TARGET = "_blank">send now!</a><-</b>
7  * Version: 1.0
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)
10  */
11
12 require_once('include/Emailer.php');
13
14 function notifyall_install() {
15         logger("installed notifyall");
16 }
17
18 function notifyall_uninstall() {
19         logger("removed notifyall");
20 }
21
22 function notifyall_module() {}
23
24 function notifyall_plugin_admin(&$a, &$o) {
25
26         $o = '<div></div>&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . z_root() . '/notifyall">' . t('Send email to all members') . '</a></br/>';
27
28 }
29
30
31 function notifyall_post(&$a) {
32         if(! is_site_admin())
33                 return;
34
35         $text = trim($_REQUEST['text']);
36         if(! $text)
37                 return;
38
39         $sitename = $a->config['sitename'];
40
41         if (!x($a->config['admin_name']))
42                 $sender_name = sprintf(t('%s Administrator'), $sitename);
43         else
44                 $sender_name = sprintf(t('%1$s, %2$s Administrator'), $a->config['admin_name'], $sitename);
45
46     if (! x($a->config['sender_email']))
47         $sender_email = 'noreply@' . $a->get_hostname();
48     else
49         $sender_email = $a->config['sender_email'];
50         $subject = $_REQUEST['subject'];
51
52
53         $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r", "\\n"),array( "", "\n"), $text))),ENT_QUOTES,'UTF-8'));
54
55         $htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br />\n"),$text)));
56
57         $sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` = '%s' ", get_config('system','admin_email')) : ''); 
58
59
60         $recips = q("SELECT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
61
62         if(! $recips) {
63                 notice( t('No recipients found.') . EOL);
64                 return;
65         }
66
67         foreach($recips as $recip) {
68
69
70                 Emailer::send(array(
71                         'fromName'             => $sender_name,
72                         'fromEmail'            => $sender_email,
73                         'replyTo'              => $sender_email,
74                         'toEmail'              => $recip['email'],
75                         'messageSubject'       => $subject,
76                         'htmlVersion'          => $htmlversion,
77                         'textVersion'          => $textversion
78                 ));
79         }
80
81         notice( t('Emails sent'));
82         goaway('admin');
83 }
84
85 function notifyall_content(&$a) {
86         if(! is_site_admin())
87                 return;
88
89         $title = t('Send email to all members of this Friendica instance.');
90
91         $o = replace_macros(get_markup_template('notifyall_form.tpl','addon/notifyall/'),array(
92                 '$title' => $title,
93                 '$text' => htmlspecialchars($_REQUEST['text']),
94                 '$subject' => array('subject',t('Message subject'),$_REQUEST['subject'],''),
95                 '$test' => array('test',t('Test mode (only send to administrator)'), 0,''),
96                 '$submit' => t('Submit')
97         ));
98
99         return $o;
100
101 }