0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/templates/broadcast-message.php
Christian Boltz 02195254d7 common.php
- define('POSTFIXADMIN', 1)

templates/*.php
- check if POSTFIXADMIN is defined to prevent direct access to the
  template files


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@256 a1433add-5e2c-0410-b055-b7f2511e0802
2007-12-02 19:23:08 +00:00

36 lines
1.2 KiB
PHP

<?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
<div id="edit_form">
<form name="broadcast-message" method="post">
<table>
<tr>
<td colspan="3"><h3><?php print $PALANG['pBroadcast_title']; ?></h3></td>
</tr>
<tr>
<td><?php print $PALANG['pBroadcast_from'] . ":"; ?></td>
<td><?php print $CONF['admin_email']; ?></td>
</tr>
<tr>
<td><?php print $PALANG['pBroadcast_name'] . ':'; ?></td>
<td><input class="flat" size="43" type="text" name="name"/></td>
</tr>
<tr>
<td><?php print $PALANG['pBroadcast_subject'] . ":"; ?></td>
<td><input class="flat" size="43" type="text" name="subject"/></td>
</tr>
<tr>
<td><?php print $PALANG['pBroadcast_message'] . ":"; ?></td>
<td><textarea class="flat" cols="40" rows="6" name="message"></textarea></td>
</tr>
<tr>
<td colspan="3" class="hlp_center">
<?php
if($error == 1){
echo '<br/><span class="error_msg">'.$PALANG['pBroadcast_error_empty'].'</span><br/><br/>' ;
}
?>
<input class="button" type="submit" name="submit" value="<?php print $PALANG['pBroadcast_send']; ?>" /></td>
</tr>
</table>
</form>
</div>