2005-03-02 18:47:19 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* 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 .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2005-03-02 18:47:19 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( '../common.inc.php' );
require_once ( '../user.inc.php' );
include 'communication.inc.php' ;
2014-02-27 21:38:16 +00:00
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'admin' );
2009-10-14 03:25:47 +00:00
2025-01-29 03:30:48 +00:00
function launchQueue ()
{
if ( ! file_exists ( '../data/logs' )) {
mkdir ( '../data/logs' );
}
exec ( 'php -q send_emailqueue.php >>../data/logs/emailqueue.log 2>&1 &' );
}
2009-12-01 22:02:03 +00:00
2025-01-29 03:30:48 +00:00
/*
* dialog_choose
* select : comm_dialog_choose_select ( emails_id )
* cancel : comm_dialog_choose_cancel ()
*/
2009-10-14 03:25:47 +00:00
2025-01-29 03:30:48 +00:00
switch ( get_value_from_array ( $_GET , 'action' )) {
case 'dialog_choose_load' :
$emails_id = intval ( $_GET [ 'emails_id' ]);
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$q -> execute ([ $emails_id ]);
2025-01-29 03:30:48 +00:00
$e = $q -> fetch ( PDO :: FETCH_ASSOC );
?>
2009-10-14 03:25:47 +00:00
< table class = " editor " >
2025-01-29 03:30:48 +00:00
< tr >< td class = " label " style = " width:15% " >< ? = i18n ( 'Name' ) ?> :</td><td class="input"><?= $e['name'] ?></td></tr>
< tr >< td class = " label " >< ? = i18n ( 'Subject' ) ?> :</td><td class="input"><?= $e['subject'] ?></td></tr>
< tr >< td class = " label " >< ? = i18n ( 'From Address' ) ?> :</td><td class="input"><?= $e['from'] ?></td></tr>
2009-10-14 03:25:47 +00:00
< tr >< td ></ td >< td >
2025-01-29 03:30:48 +00:00
< div style = " border:1px solid black; overflow:auto; height=300px; " >< ? = $e [ 'bodyhtml' ] ?> </div>
2009-10-14 03:25:47 +00:00
</ td ></ tr ></ table >
< ?
exit ;
case 'dialog_choose' :
?>
< div id = " comm_dialog_choose " title = " Select a Communication " style = " display: none " >
2025-01-29 03:30:48 +00:00
< h4 >< ? = i18n ( 'Select a Communication' ) ?> :</h4>
2009-10-14 03:25:47 +00:00
< form id = " choose " onchange = " dialog_choose_change() " onkeypress = " dialog_choose_change() " >
< table style = " width:100% " >< tr >< td >
< select id = " comm_dialog_choose_emails_id " >
2025-01-29 03:30:48 +00:00
< option value = " -1 " >-- < ? = i18n ( 'Choose a Communication' ) ?> --</option>
2009-10-14 03:25:47 +00:00
< ?
2025-01-29 03:30:48 +00:00
$type = $pdo -> quote ( $_GET [ 'type' ]);
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE type=? " );
$q -> execute ([ $type ]);
2025-01-29 03:30:48 +00:00
while ( $e = $q -> fetch ( PDO :: FETCH_ASSOC )) {
2009-10-14 03:25:47 +00:00
echo " <option value= \" { $e [ 'id' ] } \" > { $e [ 'name' ] } </option> " ;
}
?>
</ select >
</ td >< td style = " text-align:right " >
2025-01-29 03:30:48 +00:00
< input class = " comm_dialog_choose_email_button " disabled = " disabled " type = " submit " value = " <?= i18n('Choose') ?> " >
< input class = " comm_dialog_choose_cancel_button " type = " submit " value = " <?= i18n('Cancel') ?> " >
2009-10-14 03:25:47 +00:00
</ td ></ tr ></ table >
< hr />
< div id = " comm_dialog_choose_info " ></ div >
< hr />
2025-01-29 03:30:48 +00:00
< input class = " comm_dialog_choose_email_button " disabled = " disabled " type = " submit " value = " <?= i18n('Choose') ?> " >
< input class = " comm_dialog_choose_cancel_button " type = " submit " value = " <?= i18n('Cancel') ?> " >
2009-10-14 03:25:47 +00:00
</ form >
</ div >
< script type = " text/javascript " >
2009-10-14 04:56:28 +00:00
var comm_dialog_choose_selected = - 1 ;
2009-10-14 03:25:47 +00:00
$ ( " .comm_dialog_choose_email_button " ) . click ( function () {
var sel = $ ( " #comm_dialog_choose_emails_id " ) . val ();
2009-10-14 04:56:28 +00:00
comm_dialog_choose_selected = sel ;
2009-10-14 03:25:47 +00:00
$ ( '#comm_dialog_choose' ) . dialog ( " close " );
return false ;
});
$ ( " .comm_dialog_choose_cancel_button " ) . click ( function () {
$ ( '#comm_dialog_choose' ) . dialog ( " close " );
return false ;
});
function dialog_choose_change ()
{
var sel = $ ( " #comm_dialog_choose_emails_id " ) . val ();
$ ( " #comm_dialog_choose_info " ) . html ( " Loading... " );
2025-01-29 03:30:48 +00:00
$ ( " #comm_dialog_choose_info " ) . load ( " <?= $config['SFIABDIRECTORY'] ?>/admin/communication.php?action=dialog_choose_load&emails_id= " + sel );
2009-10-14 03:25:47 +00:00
if ( sel == - 1 ) {
$ ( " .comm_dialog_choose_email_button " ) . attr ( 'disabled' , 'disabled' );
} else {
$ ( " .comm_dialog_choose_email_button " ) . removeAttr ( 'disabled' );
}
return false ;
}
$ ( " #comm_dialog_choose " ) . dialog ({
2009-10-14 04:56:28 +00:00
bgiframe : true , autoOpen : true ,
2009-10-14 03:25:47 +00:00
modal : true , resizable : false ,
draggable : false ,
2009-10-14 04:56:28 +00:00
width : 700 , //(document.documentElement.clientWidth * 0.8);
height : ( document . documentElement . clientHeight * 0.8 ),
2009-10-14 03:25:47 +00:00
close : function () {
$ ( this ) . dialog ( 'destroy' );
$ ( '#comm_dialog_choose' ) . remove ();
2009-10-14 04:56:28 +00:00
/* Run callbacks */
if ( comm_dialog_choose_selected != - 1 ) {
if ( typeof ( comm_dialog_choose_select ) == 'function' ) {
comm_dialog_choose_select ( comm_dialog_choose_selected );
}
} else {
if ( typeof ( comm_dialog_choose_cancel ) == 'function' ) {
comm_dialog_choose_cancel ();
}
2009-10-14 03:25:47 +00:00
}
2009-10-14 04:56:28 +00:00
}
2009-10-14 03:25:47 +00:00
});
</ script >
< ?
exit ;
case 'email_save' :
$id = intval ( $_POST [ 'emails_id' ]);
2010-03-25 14:23:25 +00:00
2025-01-29 03:30:48 +00:00
// we need to character encode BEFORE we myql_real_escape_strintg
// otherwise, a smartquote ' will turn into a normal ' that ends up
// not being escaped!
$name = $_POST [ 'name' ];
$description = $_POST [ 'description' ];
$from = $_POST [ 'from' ];
$subject = $_POST [ 'subject' ];
$bodyhtml = $_POST [ 'bodyhtml' ];
// add //TRANSLIT to approximate any characters (eg smartquotes) that it doesnt know
$bodyhtml = iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $bodyhtml );
$name = iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $name );
$description = iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $description );
$from = iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $from );
$subject = iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $subject );
// Now its safe to escape it for the db query
2025-01-05 16:04:50 -05:00
$name = $pdo -> quote ( stripslashes ( $name ));
$description = $pdo -> quote ( stripslashes ( $description ));
$from = $pdo -> quote ( stripslashes ( $from ));
$subject = $pdo -> quote ( stripslashes ( $subject ));
$bodyhtml = $pdo -> quote ( stripslashes ( $bodyhtml ));
2010-03-25 14:23:25 +00:00
2025-01-05 16:04:50 -05:00
$type = $pdo -> quote ( $_POST [ 'type' ]);
$key = $pdo -> quote ( $_POST [ 'key' ]);
$fcid = $pdo -> quote ( $_POST [ 'fcid' ]);
2009-10-14 03:25:47 +00:00
2025-01-29 03:30:48 +00:00
if ( $id == 0 ) {
if ( $key && $name ) {
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " INSERT INTO emails(type,val) VALUES(?,?) " );
$q -> execute ([ $type , $key ]);
2025-01-01 18:20:33 -05:00
show_pdo_errors_if_any ( $pdo );
2024-12-06 20:54:02 -05:00
$id = lastInsertId ();
2009-12-02 22:17:20 +00:00
} else {
2025-01-29 03:30:48 +00:00
error_ ( 'Email Key and Name are required' );
2009-12-02 22:17:20 +00:00
exit ;
}
2009-10-14 03:25:47 +00:00
}
2009-10-14 04:56:28 +00:00
/* Allow the fundraising campaigns id to be NULL, it'll never be 0 */
$fcstr = ( $fcid == 0 ) ? 'NULL' : " ' $fcid ' " ;
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
$body = getTextFromHtml ( $bodyhtml );
2024-12-06 20:54:02 -05:00
$q = $pdo -> prepare ( " UPDATE emails SET
2025-02-03 03:04:15 +00:00
name = ? ,
description = ? ,
`from` = ? ,
subject = ? ,
body = ? ,
bodyhtml = ? ,
fundraising_campaigns_id = ?
WHERE id = ? " );
$q -> execute ([ $name , $description , $from , $subject , $body , $bodyhtml , $fcstr , $id ]);
2025-01-01 18:20:33 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
happy_ ( 'Email Saved' );
2009-10-14 03:25:47 +00:00
exit ;
case 'dialog_edit' :
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'id' , $_GET )) {
2009-10-14 03:25:47 +00:00
$id = intval ( $_GET [ 'id' ]);
2009-10-14 04:56:28 +00:00
$cloneid = 0 ;
2025-01-29 03:30:48 +00:00
} else if ( array_key_exists ( 'cloneid' , $_GET )) {
2009-10-14 04:56:28 +00:00
$id = intval ( $_GET [ 'cloneid' ]);
$clone_id = $id ;
2009-10-14 03:25:47 +00:00
} else {
2009-10-14 04:56:28 +00:00
/* new email, set defaults which may be specified */
$id = 0 ;
$key = htmlspecialchars ( $_GET [ 'key' ]);
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'fundraising_campaigns_id' , $_GET )) {
$fcid = intval ( $_GET [ 'fundraising_campaigns_id' ]);
2009-10-14 04:56:28 +00:00
$type = 'fundraising' ;
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? " );
$q -> execute ([ $fcid ]);
2025-01-29 03:30:48 +00:00
$fc = $q -> fetch ( PDO :: FETCH_OBJ );
$name = i18n ( '%1 communication for %2' , array ( ucfirst ( $key ), $fc -> name ));
2009-10-14 04:56:28 +00:00
} else {
$fcid = 0 ;
2025-01-29 03:30:48 +00:00
$type = ( array_key_exists ( 'type' , $_GET )) ? $_GET [ 'type' ] : 'user' ;
2009-10-14 04:56:28 +00:00
}
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
$from = $_SESSION [ 'name' ] . ' <' . $_SESSION [ 'email' ] . '>' ;
2009-10-14 03:25:47 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $id ) {
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$q -> execute ([ $id ]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 ) {
echo 'Ambiguous edit' ;
2009-10-14 03:25:47 +00:00
exit ;
}
2024-12-06 20:54:02 -05:00
$e = $q -> fetch ( PDO :: FETCH_ASSOC );
2009-10-14 04:56:28 +00:00
2025-01-29 03:30:48 +00:00
/*
* If we ' re supposed to clone it , load it then zero out the
* id so we make a new record on save , and override the key
*/
if ( $clone_id ) {
2009-10-14 04:56:28 +00:00
$e [ 'id' ] = 0 ;
$e [ 'val' ] = $_GET [ 'key' ];
$e [ 'fundraising_campaigns_id' ] = $_GET [ 'fundraising_campaigns_id' ];
}
2009-10-14 03:25:47 +00:00
$emails_id = $e [ 'id' ];
$name = htmlspecialchars ( $e [ 'name' ]);
2009-10-14 04:56:28 +00:00
$key = htmlspecialchars ( $e [ 'val' ]);
2009-10-14 03:25:47 +00:00
$description = htmlspecialchars ( $e [ 'description' ]);
$from = htmlspecialchars ( $e [ 'from' ]);
2025-01-29 03:30:48 +00:00
if ( ! $from && $config [ 'fairmanageremail' ])
$from = 'Fair Manager <' . $config [ 'fairmanageremail' ] . '>' ;
2009-10-14 03:25:47 +00:00
$subject = htmlspecialchars ( $e [ 'subject' ]);
$body = $e [ 'body' ];
$bodyhtml = $e [ 'bodyhtml' ];
2009-10-14 04:56:28 +00:00
$fcid = intval ( $e [ 'fundraising_campaigns_id' ]);
2025-01-29 03:30:48 +00:00
if ( $bodyhtml == '' )
$bodyhtml = nl2br ( $body );
2009-10-14 03:25:47 +00:00
}
?>
< div id = " comm_dialog_edit " title = " Edit a Communication " style = " display: none " >
< br />
< form id = " comm_dialog_edit_form " >
2025-01-29 03:30:48 +00:00
< input type = " hidden " name = " type " value = " <?= $type ?> " />
< input type = " hidden " name = " fcid " value = " <?= $fcid ?> " />
2009-12-02 22:17:20 +00:00
< table class = " editor " style = " width: 95% " >
2025-01-29 03:30:48 +00:00
< ?
if ( $emails_id ) {
?>
< input type = " hidden " name = " emails_id " value = " <?= $emails_id ?> " />
< input type = " hidden " name = " key " value = " <?= $key ?> " />
2009-12-02 22:17:20 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Email Key' ) ?> :</td>
< td class = " input " >< ? = $key ?> </td>
2009-12-02 22:17:20 +00:00
</ tr >
< ?
2025-01-29 03:30:48 +00:00
} else if ( $key ) {
echo " <input type= \" hidden \" name= \" key \" value= \" $key\ " /> \n " ;
} else {
?>
2009-12-02 22:17:20 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Email Key' ) ?> :</td>
2009-12-02 22:17:20 +00:00
< td class = " input " >< input type = " text " name = " key " size = " 60 " value = " " /></ td >
</ tr >
< ?
2025-01-29 03:30:48 +00:00
}
/* ="fcid=$fcid, key=$key, type=$type" */
?>
2009-12-02 22:17:20 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Name' ) ?> :</td>
< td class = " input " >< input type = " text " name = " name " size = " 60 " value = " <?= $name ?> " /></ td >
2009-12-02 22:17:20 +00:00
</ tr >
< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Description' ) ?> :</td>
< td class = " input " >< input type = " text " name = " description " size = " 60 " value = " <?= $description ?> " /></ td >
2009-10-14 03:25:47 +00:00
</ tr >< tr >
< tr >< td colspan = " 2 " >< hr /></ td >
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'From Address' ) ?> :</td>
< td class = " input " >< input type = " text " name = " from " size = " 60 " value = " <?= $from ?> " /></ td >
2009-10-16 06:16:48 +00:00
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Subject' ) ?> :</td>
< td class = " input " >< input type = " text " name = " subject " size = " 60 " value = " <?= $subject ?> " /></ td >
2009-10-14 03:25:47 +00:00
</ tr >< tr >
2009-10-14 19:48:40 +00:00
< td colspan = " 2 " class = " input " >
2009-10-15 07:11:43 +00:00
< table width = " 100% " >< tr >< td width = " 85% " >
< div id = " fck " >
2025-01-29 03:30:48 +00:00
< textarea id = " bodyhtml " name = " bodyhtml " rows = 6 cols = 80 >< ? = $bodyhtml ?> </textarea>
2009-10-15 07:11:43 +00:00
</ div >
2009-10-14 19:48:40 +00:00
</ td >< td width = " 15% " >
2009-10-16 15:21:58 +00:00
< select id = " comm_dialog_insert_field " name = " insert_field " size = " 20 " style = " height:300 " >
2009-10-16 06:16:48 +00:00
< option value = " EMAIL " > [ EMAIL ] </ option >
2009-10-14 19:48:40 +00:00
< option value = " FAIRNAME " > [ FAIRNAME ] </ option >
2009-10-16 06:16:48 +00:00
< option value = " FIRSTNAME " > [ FIRSTNAME ] </ option >
< option value = " LASTNAME " > [ LASTNAME ] </ option >
< option value = " NAME " > [ NAME ] </ option >
2009-12-02 22:17:20 +00:00
< option value = " SALUTATION " > [ SALUTATION ] </ option >
2009-10-16 06:16:48 +00:00
< option value = " PASSWORD " > [ PASSWORD ] </ option >
2009-12-02 22:17:20 +00:00
< option value = " REGNUM " > [ REGNUM ] </ option >
2010-01-27 20:24:14 +00:00
< option value = " URLMAIN " > [ URLMAIN ] </ option >
< option value = " URLLOGIN " > [ URLLOGIN ] </ option >
2011-01-05 20:35:31 +00:00
< option value = " ACCESSCODE " title = " School Access Code " > [ ACCESSCODE ] </ option >
2009-10-14 19:48:40 +00:00
</ select >
</ td ></ tr ></ table >
2009-10-14 03:25:47 +00:00
</ td >
</ tr ></ table >
< hr />
< div align = " right " >
2025-01-29 03:30:48 +00:00
< input type = " submit " id = " comm_dialog_edit_save_button " value = " <?= i18n('Save') ?> " />
< input type = " submit " id = " comm_dialog_edit_cancel_button " value = " <?= i18n('Cancel') ?> " />
2009-10-14 03:25:47 +00:00
</ div >
</ form >
</ div >
2025-01-29 03:30:48 +00:00
< script type = " text/javascript " src = " <?= $config['SFIABDIRECTORY'] ?>/fckeditor/fckeditor.js " ></ script >
2009-10-14 03:25:47 +00:00
< script type = " text/javascript " >
2009-10-14 04:56:28 +00:00
var comm_dialog_edit_saved = false ;
2009-10-14 03:25:47 +00:00
$ ( " #comm_dialog_edit_save_button " ) . click ( function () {
2009-10-15 21:58:51 +00:00
var oFCKeditor = FCKeditorAPI . GetInstance ( 'bodyhtml' ) ;
var value = oFCKeditor . GetHTML ();
$ ( '#bodyhtml' ) . val ( value );
2025-01-29 03:30:48 +00:00
$ ( " #debug " ) . load ( " <?= $config['SFIABDIRECTORY'] ?>/admin/communication.php?action=email_save " , $ ( " #comm_dialog_edit_form " ) . serializeArray (),
2009-10-14 03:25:47 +00:00
function () {
2009-10-14 04:56:28 +00:00
comm_dialog_edit_saved = true ;
2009-10-14 03:25:47 +00:00
$ ( '#comm_dialog_edit' ) . dialog ( " close " );
});
return false ;
}
);
$ ( " #comm_dialog_edit_cancel_button " ) . click ( function () {
$ ( '#comm_dialog_edit' ) . dialog ( " close " );
return false ;
}
);
2010-02-04 06:48:42 +00:00
2009-10-14 03:25:47 +00:00
$ ( " #comm_dialog_edit " ) . dialog ({
2009-10-14 04:56:28 +00:00
bgiframe : true , autoOpen : true ,
2009-10-14 03:25:47 +00:00
modal : true , resizable : false ,
draggable : false ,
2009-10-14 04:56:28 +00:00
width : 800 , //(document.documentElement.clientWidth * 0.8);
height : ( document . documentElement . clientHeight * 0.8 ),
2009-10-14 03:25:47 +00:00
close : function () {
$ ( this ) . dialog ( 'destroy' );
$ ( '#comm_dialog_edit' ) . remove ();
2009-10-14 04:56:28 +00:00
/* Run callbacks */
if ( comm_dialog_edit_saved == true ) {
if ( typeof ( comm_dialog_edit_save ) == 'function' ) {
2025-01-29 03:30:48 +00:00
comm_dialog_edit_save ( < ? = $emails_id ?> );
2009-10-14 04:56:28 +00:00
}
} else {
if ( typeof ( comm_dialog_edit_cancel ) == 'function' ) {
comm_dialog_edit_cancel ();
}
}
2009-12-02 22:17:20 +00:00
if ( typeof ( refreshEmailList ) == 'function' ) {
refreshEmailList ();
}
2009-10-14 04:56:28 +00:00
2009-10-14 03:25:47 +00:00
}
});
2009-10-16 15:21:58 +00:00
$ ( " #comm_dialog_insert_field " ) . click ( function () {
var oFCKeditor = FCKeditorAPI . GetInstance ( 'bodyhtml' ) ;
var value = oFCKeditor . GetHTML ();
oFCKeditor . InsertHtml ( " [ " + this . value + " ] " );
return false ;
}
);
2009-10-15 07:11:43 +00:00
var oFCKeditor = new FCKeditor ( 'bodyhtml' ) ;
oFCKeditor . BasePath = " ../fckeditor/ " ;
oFCKeditor . ToolbarSet = 'sfiab' ;
oFCKeditor . Width = " 100% " ;
oFCKeditor . Height = 300 ;
2009-10-15 21:58:51 +00:00
// $('#fck').html(oFCKeditor.CreateHtml());
oFCKeditor . ReplaceTextarea () ;
2009-10-14 03:25:47 +00:00
</ script >
< ?
exit ;
2009-12-01 22:02:03 +00:00
case 'dialog_send' :
?>
< div id = " comm_dialog_send " title = " Send Communication " style = " display: none " >
< ?
2025-01-29 03:30:48 +00:00
$fcid = intval ( $_GET [ 'fundraising_campaigns_id' ]);
$emailid = intval ( $_GET [ 'emails_id' ]);
2009-12-01 22:02:03 +00:00
2025-02-03 03:04:15 +00:00
$fcq = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? " );
$fcq -> execute ([ $fcid ]);
2025-01-29 03:30:48 +00:00
$fc = $fcq -> fetch ( PDO :: FETCH_OBJ );
2009-12-01 22:02:03 +00:00
2025-02-03 03:04:15 +00:00
$emailq = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$emailq -> execute ([ $emailid ]);
2025-01-29 03:30:48 +00:00
$email = $email -> fetch ( PDO :: FETCH_OBJ );
2009-12-01 22:02:03 +00:00
?>
< form id = " send " >
< table style = " width:100% " >
< ?
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT COUNT(*) AS num FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=? " );
$q -> execute ([ $fcid ]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
$numrecipients = $r -> num ;
2009-12-01 22:02:03 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Appeal' ) . '</td><td>' . $fc -> name . ' - ' . i18n ( ucfirst ( $email -> val )) . " </td></tr> \n " ;
echo '<tr><td>' . i18n ( 'From' ) . '</td><td>' . htmlspecialchars ( $email -> from ) . " </td></tr> \n " ;
echo '<tr><td>' . i18n ( 'Subject' ) . '</td><td>' . htmlspecialchars ( $email -> subject ) . " </td></tr> \n " ;
echo '<tr><td>' . i18n ( 'Recipients' ) . '</td><td>' . $numrecipients . " </td></tr> \n " ;
2009-12-01 22:02:03 +00:00
?>
</ table >
< hr />
< div id = " comm_dialog_send_info " >
< ?
2025-01-29 03:30:48 +00:00
if ( $numrecipients > 0 ) {
echo i18n ( 'Please confirm you wish to send this email to %1 recipients. Clicking the Send button below will begin sending the emails immediately.' , array ( $numrecipients ));
2009-12-01 22:02:03 +00:00
echo " <br /> \n " ;
echo " <br /> \n " ;
2025-01-29 03:30:48 +00:00
echo '<input class="comm_dialog_send_send_button" type="submit" value="' . i18n ( 'Send' ) . " \" /> \n " ;
} else {
echo i18n ( 'You have not selected any recipients on the Prospects tab. Press Cancel and click on Prospects to add recipients' );
2009-12-01 22:02:03 +00:00
echo " <br /> \n " ;
echo " <br /> \n " ;
}
?>
2025-01-29 03:30:48 +00:00
< input class = " comm_dialog_send_cancel_button " type = " submit " value = " <?= i18n('Cancel') ?> " >
2009-12-01 22:02:03 +00:00
</ div >
< div id = " comm_dialog_send_processing " style = " display: none; " >
2025-01-29 03:30:48 +00:00
< ? = i18n ( 'Please wait while the email queue is initialized...' ) ?>
2009-12-01 22:02:03 +00:00
< br />
< img src = " ../images/ajax-loader.gif " >
</ div >
< div id = " comm_dialog_send_status " style = " display: none; " >
2025-01-29 03:30:48 +00:00
< ? = i18n ( 'The email has been queued to send' ); ?>
< br />< br />< input class = " comm_dialog_send_status_button " type = " submit " value = " <?= i18n('Close and view sending status') ?> " >
< input class = " comm_dialog_send_close_button " type = " submit " value = " <?= i18n('Close and continue') ?> " >
2009-12-01 22:02:03 +00:00
</ div >
</ form >
</ div >
< script type = " text/javascript " >
var comm_dialog_choose_selected = - 1 ;
$ ( " .comm_dialog_send_send_button " ) . click ( function () {
$ ( " #comm_dialog_send_info " ) . hide ();
$ ( " #comm_dialog_send_processing " ) . show ();
2025-01-29 03:30:48 +00:00
$ . post ( " communication.php?action=sendqueue " ,{ fundraising_campaigns_id : < ? = $fcid ?> , emails_id: <?= $emailid ?>}, function() {
2009-12-01 22:02:03 +00:00
$ ( " #comm_dialog_send_processing " ) . hide ();
$ ( " #comm_dialog_send_status " ) . show ();
});
// $('#comm_dialog_send').dialog("close");
return false ;
});
$ ( " .comm_dialog_send_cancel_button " ) . click ( function () {
$ ( '#comm_dialog_send' ) . dialog ( " close " );
return false ;
});
$ ( " .comm_dialog_send_close_button " ) . click ( function () {
$ ( '#comm_dialog_send' ) . dialog ( " close " );
return false ;
});
$ ( " .comm_dialog_send_status_button " ) . click ( function () {
$ ( '#comm_dialog_send' ) . dialog ( " close " );
window . location . href = " communication_send_status.php " ;
return false ;
});
$ ( " #comm_dialog_send " ) . dialog ({
bgiframe : true , autoOpen : true ,
modal : true , resizable : false ,
draggable : false ,
width : 600 , //(document.documentElement.clientWidth * 0.8);
close : function () {
$ ( this ) . dialog ( 'destroy' );
$ ( '#comm_dialog_send' ) . remove ();
/* Run callbacks */
if ( typeof ( update_tab_communications ) == 'function' ) {
update_tab_communications ();
}
}
});
</ script >
< ?
exit ;
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
// dialog_sender is used to send a one-off communication based on a given template to a given user
// receives 'uid' and an optional 'template'
2009-12-02 22:17:20 +00:00
case 'dialog_sender' :
2025-01-29 03:30:48 +00:00
$u = user_load_by_uid ( intval ( $_GET [ 'uid' ]));
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
if ( $_GET [ 'template' ]) {
2025-02-03 03:04:15 +00:00
$emailq = $pdo -> prepare ( " SELECT * FROM emails WHERE `val`=? " );
$emailq -> execute ([ $_GET [ 'template' ]]);
2025-01-29 03:30:48 +00:00
$e = $emailq -> fetch ( PDO :: FETCH_ASSOC );
} else
$e = null ;
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
$from = htmlspecialchars ( $_SESSION [ 'name' ] . ' <' . $_SESSION [ 'email' ] . '>' );
$to = htmlspecialchars ( $u [ 'emailrecipient' ]);
2009-12-02 22:17:20 +00:00
$subject = htmlspecialchars ( $e [ 'subject' ]);
2025-01-29 03:30:48 +00:00
// useless but we might as well have it
2009-12-02 22:17:20 +00:00
$name = htmlspecialchars ( $e [ 'name' ]);
$key = htmlspecialchars ( $e [ 'val' ]);
$description = htmlspecialchars ( $e [ 'description' ]);
2025-01-29 03:30:48 +00:00
// do the replacements from the template now, so what the person see's is what gets sent.
$body = communication_replace_vars ( $e [ 'body' ], $u );
$bodyhtml = communication_replace_vars ( $e [ 'bodyhtml' ], $u );
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
// if there's no html,. grab the html from the non-html version
if ( $bodyhtml == '' )
$bodyhtml = nl2br ( $body );
2009-12-02 22:17:20 +00:00
?>
< div id = " comm_dialog_sender " title = " Send an Email " style = " display: none " >
< br />
< form id = " comm_dialog_sender_form " >
2025-01-29 03:30:48 +00:00
< ? /* ="fcid=$fcid, key=$key, type=$type" */ ?>
2009-12-02 22:17:20 +00:00
< table class = " editor " style = " width:95% " >
< ?
2025-01-29 03:30:48 +00:00
if ( $e ) {
echo '<tr><td class="label">' . i18n ( 'Using Template' ) . " :</td><td class= \" input \" ><a href= \" communication.php?action=edit&val= $key\ " > $name ( " . i18n('click to edit template') . " ) </ a ></ td ></ tr > \n " ;
2009-12-02 22:17:20 +00:00
echo " <tr><td colspan= \" 2 \" ><hr /></td></tr> \n " ;
}
?>
< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'From' ) ?> :</td>
< td class = " input " >< input type = " text " name = " from " size = " 60 " value = " <?= $from ?> " /></ td >
2009-12-02 22:17:20 +00:00
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'To' ) ?> :</td>
< td class = " input " >< input type = " text " name = " to " size = " 60 " value = " <?= $to ?> " /></ td >
2009-12-02 22:17:20 +00:00
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td class = " label " >< ? = i18n ( 'Subject' ) ?> :</td>
< td class = " input " >< input type = " text " name = " subject " size = " 60 " value = " <?= $subject ?> " /></ td >
2009-12-02 22:17:20 +00:00
</ tr >< tr >
< td colspan = " 2 " class = " input " >
< div id = " fck " >
2025-01-29 03:30:48 +00:00
< textarea id = " bodyhtml " name = " bodyhtml " rows = 6 cols = 80 >< ? = $bodyhtml ?> </textarea>
2009-12-02 22:17:20 +00:00
</ div >
</ td >
</ tr ></ table >
< hr />
< div align = " right " >
2025-01-29 03:30:48 +00:00
< input type = " submit " id = " comm_dialog_sender_send_button " value = " <?= i18n('Send') ?> " />
< input type = " submit " id = " comm_dialog_sender_cancel_button " value = " <?= i18n('Cancel') ?> " />
2009-12-02 22:17:20 +00:00
</ div >
</ form >
</ div >
2025-01-29 03:30:48 +00:00
< script type = " text/javascript " src = " <?= $config['SFIABDIRECTORY'] ?>/fckeditor/fckeditor.js " ></ script >
2009-12-02 22:17:20 +00:00
< script type = " text/javascript " >
$ ( " #comm_dialog_sender_send_button " ) . click ( function () {
var oFCKeditor = FCKeditorAPI . GetInstance ( 'bodyhtml' ) ;
var value = oFCKeditor . GetHTML ();
$ ( '#bodyhtml' ) . val ( value );
2025-01-29 03:30:48 +00:00
$ ( " #debug " ) . load ( " <?= $config['SFIABDIRECTORY'] ?>/admin/communication.php?action=email_send " , $ ( " #comm_dialog_sender_form " ) . serializeArray (),
2009-12-02 22:17:20 +00:00
function () {
$ ( '#comm_dialog_sender' ) . dialog ( " close " );
});
return false ;
}
);
$ ( " #comm_dialog_sender_cancel_button " ) . click ( function () {
$ ( '#comm_dialog_sender' ) . dialog ( " close " );
return false ;
}
);
$ ( " #comm_dialog_sender " ) . dialog ({
bgiframe : true , autoOpen : true ,
modal : true , resizable : false ,
draggable : false ,
width : 800 , //(document.documentElement.clientWidth * 0.8);
close : function () {
$ ( this ) . dialog ( 'destroy' );
$ ( '#comm_dialog_sender' ) . remove ();
/* Run callbacks */
}
});
var oFCKeditor = new FCKeditor ( 'bodyhtml' ) ;
oFCKeditor . BasePath = " ../fckeditor/ " ;
oFCKeditor . ToolbarSet = 'sfiab' ;
oFCKeditor . Width = " 100% " ;
oFCKeditor . Height = 300 ;
// $('#fck').html(oFCKeditor.CreateHtml());
oFCKeditor . ReplaceTextarea () ;
</ script >
< ?
2025-01-29 03:30:48 +00:00
exit ;
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
case 'email_send' :
$body = getTextFromHtml ( $_POST [ 'bodyhtml' ]);
email_send_new ( stripslashes ( $_POST [ 'to' ]), stripslashes ( $_POST [ 'from' ]), stripslashes ( $_POST [ 'subject' ]), stripslashes ( $body ), stripslashes ( $_POST [ 'bodyhtml' ]));
happy_ ( 'Email Successfully Sent' );
exit ;
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
case 'email_get_list' :
$q = $pdo -> prepare ( 'SELECT * FROM emails ORDER BY type,name' );
$q -> execute ();
echo '<table class="tableview">' ;
echo '<thead><tr>' ;
echo ' <th>' . i18n ( 'Name' ) . '</th>' ;
echo ' <th>' . i18n ( 'Type' ) . '</th>' ;
echo ' <th>' . i18n ( 'Actions' ) . '</th>' ;
echo '</tr></thead>' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> fundraising_campaigns_id )
$fcid = $r -> fundraising_campaigns_id ;
else
$fcid = 'null' ;
if ( $r -> name )
$name = $r -> name ;
else
$name = i18n ( 'no email name specified' );
echo '<tr><td><a href="#" onclick="return opencommunicationeditor(\'' . addslashes ( $r -> val ) . " ', $r->id , $fcid ) \" > " , htmlspecialchars ( $name ) . '</a></td>' ;
echo " <td> $r->type </td> " ;
echo ' <td align="center">' ;
// only user emails can be deleted, system ones are required and cannot be removed
if ( $r -> type == 'user' ) {
echo ' ' ;
echo " <a onclick= \" return confirmClick('Are you sure you want to remove email?') \" href= \" communication.php?action=delete&delete= $r->id\ " >< img border = 0 src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"></a>' ;
echo ' ' ;
echo " <a href= \" communication.php?action=send&send= $r->id\ " > " . i18n('Send') . '</a>';
}
echo " </td> \n " ;
echo '</tr>' ;
2009-12-02 22:17:20 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</table>' ;
exit ;
2010-02-11 15:58:26 +00:00
2025-01-29 03:30:48 +00:00
case 'cancel' :
if ( $_GET [ 'cancel' ]) {
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " UPDATE emailqueue SET finished=NOW() WHERE id=? " );
$q -> execute ([ intval ( $_GET [ 'cancel' ])]);
2025-01-29 03:30:48 +00:00
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " UPDATE emailqueue_recipients SET result='cancelled' WHERE emailqueue_id=? AND sent IS NULL AND result IS NULL " );
$q -> execute ([ intval ( $_GET [ 'cancel' ])]);
2025-01-29 03:30:48 +00:00
echo 'ok' ;
}
exit ;
2010-11-22 18:40:50 +00:00
case 'loadaddresses' :
2025-01-29 03:30:48 +00:00
if ( $_GET [ 'query' ] && array_key_exists ( $_GET [ 'query' ], $mailqueries )) {
2025-02-07 04:01:10 +00:00
$q = $pdo -> prepare ( $mailqueries [ $_GET [ 'query' ]][ 'query' ]);
$q -> execute ();
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> organization )
$s = " ( $r->organization ) " ;
else
$s = '' ;
2010-11-22 18:40:50 +00:00
echo " $r->firstname $r->lastname { $s } < $r->email ><br /> " ;
}
}
2025-01-29 03:30:48 +00:00
exit ;
2009-12-01 22:02:03 +00:00
}
2009-10-14 03:25:47 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'sendqueue' ) {
$fcid = intval ( $_POST [ 'fundraising_campaigns_id' ]);
$emailid = intval ( $_POST [ 'emails_id' ]);
2009-12-01 22:02:03 +00:00
2025-02-03 21:34:12 +00:00
$fcq = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? " );
$fcq -> execute ([ $fcid ]);
2025-01-29 03:30:48 +00:00
$fc = $fcq -> fetch ( PDO :: FETCH_OBJ );
2024-12-06 20:54:02 -05:00
2025-02-03 21:34:12 +00:00
$emailq = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$emailq -> execute ([ $emailid ]);
2025-01-29 03:30:48 +00:00
$email = $emailq -> fetch ( PDO :: FETCH_OBJ );
2009-12-01 22:02:03 +00:00
2024-12-06 20:54:02 -05:00
$recipq = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns_users_link
2025-02-03 21:34:12 +00:00
WHERE fundraising_campaigns_id = ? " );
$recipq -> execute ([ $fcid ]);
2025-01-01 18:20:33 -05:00
show_pdo_errors_if_any ( $pdo );
2024-12-06 20:54:02 -05:00
2025-01-29 03:30:48 +00:00
$numtotal = $recipq -> rowCount ();
2009-12-01 22:02:03 +00:00
2025-02-05 06:06:13 +00:00
$q = $pdo -> prepare ( " INSERT INTO emailqueue (val, name, users_uid, `from`, subject, body, bodyhtml, `type`, fundraising_campaigns_id, started, finished, numtotal, numsent)
VALUES ( ? , ? , ? , ? , ? , ? , ? , ? , ? , NOW (), NULL , ? , 0 ) " );
$q -> execute ([
$email -> val ,
$email -> name ,
$_SESSION [ 'users_uid' ],
$email -> from ,
$email -> subject ,
$email -> body ,
$email -> bodyhtml ,
$email -> type ,
$fcid ,
$numtotal
]);
2025-01-29 03:30:48 +00:00
$emailqueueid = $pdo -> lastInsertId ();
2025-01-01 18:20:33 -05:00
show_pdo_errors_if_any ( $pdo );
2009-12-01 22:02:03 +00:00
2025-01-29 03:30:48 +00:00
$urlproto = $_SERVER [ 'SERVER_PORT' ] == 443 ? 'https://' : 'http://' ;
2010-01-27 20:24:16 +00:00
$urlmain = " $urlproto { $_SERVER [ 'HTTP_HOST' ] } { $config [ 'SFIABDIRECTORY' ] } " ;
$urllogin = " $urlmain /login.php " ;
2025-01-29 03:30:48 +00:00
while ( $r = $recipq -> fetch ( PDO :: FETCH_OBJ )) {
$u = user_load_by_uid ( $r -> users_uid );
// we only send school access codes to science heads or principals
2011-01-05 20:35:31 +00:00
2025-02-03 21:34:12 +00:00
$acq = $pdo -> prepare ( " SELECT accesscode FROM schools WHERE (sciencehead_uid=? OR principal_uid=? AND `year`=? " );
$acq -> execute ([ $u [ 'uid' ], $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$acr = $acq -> fetch ( PDO :: FETCH_OBJ );
$accesscode = $acr -> accesscode ;
$replacements = array (
'FAIRNAME' => $config [ 'fairname' ],
'SALUTATION' => $u [ 'salutation' ],
'FIRSTNAME' => $u [ 'firstname' ],
'LASTNAME' => $u [ 'lastname' ],
'NAME' => $u [ 'name' ],
'EMAIL' => $u [ 'email' ],
'ORGANIZATION' => $u [ 'sponsor' ][ 'organization' ],
'URLMAIN' => $urlmain ,
'URLLOGIN' => $urllogin ,
'ACCESSCODE' => $accesscode ,
);
if ( $u [ 'email' ] && $u [ 'email' ][ 0 ] != '*' ) {
2025-02-05 06:06:13 +00:00
$q = $pdo -> prepare ( " INSERT INTO emailqueue_recipients (emailqueue_id, toemail, toname, replacements, sent) VALUES (?, ?, ?, ?, NULL) " );
$q -> execute ([
$emailqueueid ,
$u [ 'email' ],
$u [ 'name' ],
json_encode ( $replacements )
]);
2025-01-05 16:04:50 -05:00
show_pdo_errors_if_any ( $pdo );
2009-12-01 22:02:03 +00:00
}
2025-02-03 21:34:12 +00:00
$q = $pdo -> prepare ( " UPDATE emails SET lastsent=NOW() WHERE id=? " );
$q -> execute ([ $emailid ]);
2009-12-01 22:02:03 +00:00
}
2025-01-29 03:30:48 +00:00
echo 'ok' ;
2009-12-01 22:02:03 +00:00
launchQueue ();
exit ;
2025-01-29 03:30:48 +00:00
}
send_header ( 'Communication' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ),
'communication' );
echo '<br />' ;
?>
2010-11-22 18:40:50 +00:00
< script type = " text/javascript " >
function toggleAddresses () {
if ( $ ( " #toaddresses " ) . is ( " :visible " )) {
$ ( " #toaddresses " ) . hide ();
$ ( " #toaddresses-view " ) . html ( " Show Recipients " );
} else {
$ ( " #toaddresses " ) . show ();
$ ( " #toaddresses-view " ) . html ( " Hide Recipients " );
}
return false ;
}
function loadAddresses () {
$ ( " #toaddresses " ) . load ( " communication.php?action=loadaddresses&query= " + $ ( " #to " ) . val ());
}
</ script >
< ?
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'delete' && get_value_from_array ( $_GET , 'delete' )) {
2025-02-03 21:34:12 +00:00
$q = $pdo -> prepare ( " DELETE FROM emails WHERE id=? AND `type`='user' " );
$q -> execute ([ $_GET [ 'delete' ]]);
2025-01-29 03:30:48 +00:00
echo happy ( 'Email successfully deleted' );
}
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'send' && get_value_from_array ( $_GET , 'send' )) {
show_pdo_errors_if_any ( $pdo );
2024-12-06 20:54:02 -05:00
2025-02-03 21:34:12 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$q -> execute ( $_GET [ 'send' ]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
echo i18n ( 'Please confirm you would like to send the following email, and choose who to send it to' );
echo '<br>' ;
echo '<br>' ;
echo '<form method="post" action="communication.php">' ;
echo '<table cellspacing=0 cellpadding=3 border=1>' ;
echo '<tr><td><b>From:</b></td><td>' . htmlspecialchars ( $r -> from ) . '</td></tr>' ;
echo '<tr><td><b>To:</b></td><td>' ;
echo '<select name="to" id="to" onchange="loadAddresses();">' ;
echo ' <option value="">Choose Email Recipients</option>' ;
$str = '' ;
foreach ( $mailqueries AS $k => $mq ) {
$tq = $pdo -> prepare ( $mq [ 'query' ]);
$tq -> execute ();
if ( $pdo -> errorInfo ()) {
show_pdo_errors_if_any ( $pdo );
exit ;
2009-12-03 20:55:16 +00:00
}
2025-01-29 03:30:48 +00:00
$num = $tq -> rowCount ();
$str .= '<h2>' . $mq [ 'name' ] . " $num </h2> " ;
while ( $tr = $tq -> fetch ( PDO :: FETCH_OBJ )) {
$str .= '[' . $tr -> uid . '][' . $tr -> year . '] ' . $tr -> firstname . ' ' . $tr -> lastname . " < { $tr -> email } ><br /> " ;
2009-12-02 22:17:20 +00:00
}
2025-01-29 03:30:48 +00:00
echo " <option value= \" $k\ " > " . i18n( $mq['name'] ) . ' (' . i18n('%1 recipients', array( $num ), array('number')) . ')</option>';
}
echo '</select>' ;
echo '<div id="toaddresses-view-wrapper"><a href="#" onclick="return toggleAddresses()"><span id="toaddresses-view">View Recipients</span></a></div>' ;
echo '<div id="toaddresses" style="width: 100%; height: 300px; overflow: auto; border: 1px solid grey; background-color: #FFFFFF; display: none;">empty</div>' ;
echo '</td></tr>' ;
echo '<tr><td><b>Date:</b></td><td>' . date ( 'r' ) . '</td></tr>' ;
echo '<tr><td><b>Subject:</b></td><td>' . htmlspecialchars ( $r -> subject ) . '</td></tr>' ;
if ( $r -> bodyhtml ) {
$body = $r -> bodyhtml ;
} else {
$body = nl2br ( htmlspecialchars ( $r -> body ));
}
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td colspan=2>' . $body . '<br />(' . mb_detect_encoding ( $body ) . ')</td></tr>' ;
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
if ( ! function_exists ( 'exec' )) {
echo " <div class= \" error \" >Sending requires php's exec() function to be available</div> \n " ;
} else {
echo '<table border=0 cellspacing=0 cellpadding=30 width="100%">' ;
echo '<tr><td align=center>' ;
echo '<input type=hidden name=action value="reallysend">' ;
echo '<input type=hidden name=reallysend value="' . $_GET [ 'send' ] . '">' ;
echo '<input type=submit value="Yes, Send Email">' ;
echo '</form>' ;
echo '</td><td>' ;
echo '<form method=get action="communication.php">' ;
echo '<input type=submit value="No, Do Not Send">' ;
echo '</form>' ;
echo '</td></tr>' ;
echo '</table>' ;
2005-03-02 18:47:19 +00:00
}
2025-01-29 03:30:48 +00:00
// echo $str;
} else if ( get_value_from_array ( $_POST , 'action' ) == 'reallysend' && get_value_from_array ( $_POST , 'reallysend' ) && get_value_from_array ( $_POST , 'to' )) {
$emailid = intval ( $_POST [ 'reallysend' ]);
2025-02-03 21:34:12 +00:00
$emailq = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$emailq -> execute ([ $emailid ]);
2025-01-29 03:30:48 +00:00
$email = $emailq -> fetch ( PDO :: FETCH_OBJ );
$to = $_POST [ 'to' ];
2009-12-02 22:17:20 +00:00
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( $to , $mailqueries )) {
$recipq = $pdo -> prepare ( $mailqueries [ $to ][ 'query' ]);
$recipq -> execute ();
}
2006-03-01 15:59:51 +00:00
2025-01-29 03:30:48 +00:00
$numtotal = $recipq -> rowCount ();
2025-02-05 06:06:13 +00:00
$q = $pdo -> prepare ( " INSERT INTO emailqueue (val, name, users_uid, `from`, subject, body, bodyhtml, `type`, fundraising_campaigns_id, started, finished, numtotal, numsent) VALUES (?, ?, ?, ?, ?, ?, ?, ?, NULL, NOW(), NULL, ?, 0) " );
$q -> execute ([
$email -> val ,
$email -> name ,
$_SESSION [ 'users_uid' ],
$email -> from ,
$email -> subject ,
$email -> body ,
$email -> bodyhtml ,
$email -> type ,
$numtotal
]);
2025-01-29 03:30:48 +00:00
$emailqueueid = lastInsertId ();
show_pdo_errors_if_any ( $pdo );
$urlproto = $_SERVER [ 'SERVER_PORT' ] == 443 ? 'https://' : 'http://' ;
$urlmain = " $urlproto { $_SERVER [ 'HTTP_HOST' ] } { $config [ 'SFIABDIRECTORY' ] } " ;
$urllogin = " $urlmain /login.php " ;
while ( $r = $recipq -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> uid )
$u = user_load_by_uid ( $r -> uid );
else if ( $r -> users_uid )
$u = user_load_by_uid ( $r -> users_uid );
else {
$toname = $r -> firstname . ' ' . $r -> lastname ;
$toemail = $r -> email ;
$replacements = array (
'FAIRNAME' => $config [ 'fairname' ],
'FIRSTNAME' => $r -> firstname ,
'LASTNAME' => $r -> lastname ,
'NAME' => $r -> firstname . ' ' . $r -> lastname ,
'EMAIL' => $r -> email ,
'ORGANIZATION' => $r -> organization ,
'URLMAIN' => $urlmain ,
'URLLOGIN' => $urllogin ,
'ACCESSCODE' => 'unknown' ,
);
}
if ( $u ) {
// we only send school access codes to science heads or principals
2025-02-03 21:34:12 +00:00
$acq = $pdo -> prepare ( " SELECT accesscode FROM schools WHERE (sciencehead_uid=? OR principal_uid=?) AND `year`=? " );
$acq -> execute ([ $u [ 'uid' ], $u [ 'uid' ], $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
$acr = $acq -> fetch ( PDO :: FETCH_OBJ );
$accesscode = $acr -> accesscode ;
$replacements = array (
'FAIRNAME' => $config [ 'fairname' ],
'SALUTATION' => $u [ 'salutation' ],
'FIRSTNAME' => $u [ 'firstname' ],
'LASTNAME' => $u [ 'lastname' ],
'NAME' => $u [ 'name' ],
'EMAIL' => $u [ 'email' ],
'ORGANIZATION' => $u [ 'sponsor' ][ 'organization' ],
'URLMAIN' => $urlmain ,
'URLLOGIN' => $urllogin ,
'ACCESSCODE' => $accesscode ,
);
2006-03-01 15:59:51 +00:00
2025-01-29 03:30:48 +00:00
$toname = $u [ 'name' ];
$toemail = $u [ 'email' ];
}
if ( $toemail ) {
2025-02-05 06:06:13 +00:00
$q = $pdo -> prepare ( " INSERT INTO emailqueue_recipients (emailqueue_id, toemail, toname, replacements, sent) VALUES (?, ?, ?, ?, NULL) " );
$q -> execute ([
$emailqueueid ,
$toemail ,
$toname ,
json_encode ( $replacements )
]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
2005-03-02 18:47:19 +00:00
}
2025-02-03 21:34:12 +00:00
$q = $pdo -> prepare ( " UPDATE emails SET lastsent=NOW() WHERE id=? " );
$q -> execute ([ $emailid ]);
2009-12-02 22:17:20 +00:00
}
2025-01-29 03:30:48 +00:00
launchQueue ();
echo '<br />' ;
echo happy ( 'Email Communication sending has started!' );
echo '<br>' ;
echo '<a href="communication_send_status.php">Click here to see the sending progress</a>' ;
} else if ( get_value_from_array ( $_GET , 'action' ) == 'restartqueue' ) {
launchQueue ();
echo '<br />' ;
echo happy ( 'Email Communication sending has started!' );
echo '<br>' ;
echo '<a href="communication_send_status.php">Click here to see the sending progress</a>' ;
} else {
if ( ! $config [ 'fairmanageremail' ])
echo notice ( i18n ( " Warning: The 'Fair Manager Email' has not been set in SFIAB Configuration / Configuration Variables / Global. Please set it. The 'Fair Manager Email' is the default 'From' address for all emails and without a 'From' address, no emails can be sent! " ));
echo '<a href="communication_send_status.php">' . i18n ( 'Email Queue Status and History' ) . '</a><br />' ;
echo '<a href="#" onclick="return opencommunicationeditor(null,null,null)">' . i18n ( 'Add New Email' ) . '</a>' ;
echo " <br /> \n " ;
echo " <br /> \n " ;
echo '<div id="emaillist"></div>' ;
?>
2009-12-02 22:17:20 +00:00
< script type = " text/javascript " >
function refreshEmailList () {
2010-03-31 18:44:42 +00:00
$ ( " #emaillist " ) . load ( " communication.php?action=email_get_list " , null , function (){
$ ( '.tableview' ) . tablesorter ();
});
2005-03-02 18:47:19 +00:00
}
2009-12-02 22:17:20 +00:00
$ ( document ) . ready ( function () {
refreshEmailList ();
}
);
</ script >
< ?
2025-01-29 03:30:48 +00:00
}
2005-03-02 18:47:19 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2005-03-02 18:47:19 +00:00
?>