0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/broadcast-message.tpl
Christian Boltz f0a153f0fc sendmail.php, broadcast-message.php:
- use smtp_get_admin_email() to determinate the mail sender
- rename $SESSID_USERNAME to $smtp_from_email
- replaced tMessage with flash_error() / flash_info()

sendmail.php:
- changes compared to Dale's patch:
  - use flash_info() for $PALANG['pSendmail_result_success']

broadcast-message.php:
- use flash_error() for $PALANG['pBroadcast_error_empty'] instead of
  hardcoding it in the template


sendmail.tpl,templates/broadcast-message.tpl:
- replace <h3> with <th>
- replaced $SESSID_USERNAME / $CONF[admin_email] with $smtp_from_email
- mark labels with <label>
- mark non-editable fields with <em>
- align buttons with input fields
- remove tMessage

sendmail.tpl:
- changes compared to Dale's patch:
  - fixed colspan for buttons cell

templates/broadcast-message.tpl:
- remove hardcoded error message (see broadcast-message.php change above)
- changes compared to Dale's patch:
  - fixed colspan for <th>

This commit is part of the huge cleanup patch by Dale Blount (lnxus@SF),
https://sourceforge.net/tracker/?func=detail&atid=937966&aid=3370510&group_id=191583


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1094 a1433add-5e2c-0410-b055-b7f2511e0802
2011-07-19 21:41:37 +00:00

32 lines
889 B
Smarty

<div id="edit_form">
<form name="broadcast-message" method="post" action="">
<table>
<tr>
<th colspan="2">{$PALANG.pBroadcast_title}</th>
</tr>
<tr>
<td class="label"><label>{$PALANG.pBroadcast_from}:</label></td>
<td><em>{$smtp_from_email}</em></td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pBroadcast_name}:</label></td>
<td><input class="flat" size="43" type="text" name="name"/></td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pBroadcast_subject}:</label></td>
<td><input class="flat" size="43" type="text" name="subject"/></td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pBroadcast_message}:</label></td>
<td><textarea class="flat" cols="40" rows="6" name="message"></textarea></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
<input class="button" type="submit" name="submit" value="{$PALANG.pBroadcast_send}" />
</td>
</tr>
</table>
</form>
</div>