110 lines
2.5 KiB
PHP
110 lines
2.5 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @version $Id: admin.massmail.html.php 10002 2008-02-08 10:56:57Z willebil $
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Massmail
|
||
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
||
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
|
||
|
|
* Joomla! is free software. This version may have been modified pursuant
|
||
|
|
* to the GNU General Public License, and as distributed it includes or
|
||
|
|
* is derivative of works licensed under the GNU General Public License or
|
||
|
|
* other free or open source software licenses.
|
||
|
|
* See COPYRIGHT.php for copyright notices and details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// no direct access
|
||
|
|
defined( '_VALID_MOS' ) or die( 'Restricted access' );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Massmail
|
||
|
|
*/
|
||
|
|
class HTML_massmail {
|
||
|
|
function messageForm( &$lists, $option ) {
|
||
|
|
?>
|
||
|
|
<script language="javascript" type="text/javascript">
|
||
|
|
function submitbutton(pressbutton) {
|
||
|
|
var form = document.adminForm;
|
||
|
|
if (pressbutton == 'cancel') {
|
||
|
|
submitform( pressbutton );
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
// do field validation
|
||
|
|
if (form.mm_subject.value == ""){
|
||
|
|
alert( "Please fill in the subject" );
|
||
|
|
} else if (getSelectedValue('adminForm','mm_group') < 0){
|
||
|
|
alert( "Please select a group" );
|
||
|
|
} else if (form.mm_message.value == ""){
|
||
|
|
alert( "Please fillin the message" );
|
||
|
|
} else {
|
||
|
|
submitform( pressbutton );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<form action="index2.php" name="adminForm" method="post">
|
||
|
|
<table class="adminheading">
|
||
|
|
<tr>
|
||
|
|
<th class="massemail">
|
||
|
|
Mass Mail
|
||
|
|
</th>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<table class="adminform">
|
||
|
|
<tr>
|
||
|
|
<th colspan="2">
|
||
|
|
Details
|
||
|
|
</th>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td width="150" valign="top">
|
||
|
|
Group:
|
||
|
|
</td>
|
||
|
|
<td width="85%">
|
||
|
|
<?php echo $lists['gid']; ?>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
Mail to Child Groups:
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input type="checkbox" name="mm_recurse" value="RECURSE" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
Send in HTML mode:
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input type="checkbox" name="mm_mode" value="1" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
Subject:
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input class="inputbox" type="text" name="mm_subject" value="" size="50"/>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td valign="top">
|
||
|
|
Message:
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<textarea cols="80" rows="25" name="mm_message" class="inputbox"></textarea>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<input type="hidden" name="option" value="<?php echo $option; ?>"/>
|
||
|
|
<input type="hidden" name="task" value=""/>
|
||
|
|
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
|
||
|
|
</form>
|
||
|
|
<?php
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|