get_hostname(); $subject = $_REQUEST['subject']; $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r", "\\n"),array( "", "\n"), $text))),ENT_QUOTES,'UTF-8')); $htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","
\n"),$text))); $sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" and account_email = '%s' ", get_config('system','admin_email')) : ''); $recips = q("select account_email from account where account_flags = %d $sql_extra", intval(ACCOUNT_OK) ); if(! $recips) { notice( t('No recipients found.') . EOL); return; } foreach($recips as $recip) { enotify::send(array( 'fromName' => $sender_name, 'fromEmail' => $sender_email, 'replyTo' => $sender_email, 'toEmail' => $recip['account_email'], 'messageSubject' => $subject, 'htmlVersion' => $htmlversion, 'textVersion' => $textversion )); } } function hubwall_content(&$a) { if(! is_site_admin()) return; $title = t('Send email to all hub members.'); $o = replace_macros(get_markup_template('hubwall_form.tpl','addon/hubwall/'),array( '$title' => $title, '$text' => htmlspecialchars($_REQUEST['text']), '$subject' => array('subject',t('Message subject'),$_REQUEST['subject'],''), '$test' => array('test',t('Test mode (only send to hub administrator)'), 0,''), '$submit' => t('Submit') )); return $o; }