PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.2 KiB

  1. <?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
  2. <div id="edit_form">
  3. <form name="broadcast-message" method="post">
  4. <table>
  5. <tr>
  6. <td colspan="3"><h3><?php print $PALANG['pBroadcast_title']; ?></h3></td>
  7. </tr>
  8. <tr>
  9. <td><?php print $PALANG['pBroadcast_from'] . ":"; ?></td>
  10. <td><?php print $CONF['admin_email']; ?></td>
  11. </tr>
  12. <tr>
  13. <td><?php print $PALANG['pBroadcast_name'] . ':'; ?></td>
  14. <td><input class="flat" size="43" type="text" name="name"/></td>
  15. </tr>
  16. <tr>
  17. <td><?php print $PALANG['pBroadcast_subject'] . ":"; ?></td>
  18. <td><input class="flat" size="43" type="text" name="subject"/></td>
  19. </tr>
  20. <tr>
  21. <td><?php print $PALANG['pBroadcast_message'] . ":"; ?></td>
  22. <td><textarea class="flat" cols="40" rows="6" name="message"></textarea></td>
  23. </tr>
  24. <tr>
  25. <td colspan="3" class="hlp_center">
  26. <?php
  27. if($error == 1){
  28. echo '<br/><span class="error_msg">'.$PALANG['pBroadcast_error_empty'].'</span><br/><br/>' ;
  29. }
  30. ?>
  31. <input class="button" type="submit" name="submit" value="<?php print $PALANG['pBroadcast_send']; ?>" /></td>
  32. </tr>
  33. </table>
  34. </form>
  35. </div>