opensmtpdadmin/templates/sendmail.tpl

38 lines
1.1 KiB
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="edit_form">
<form name="sendmail" method="post">
<table>
<tr>
2022-09-04 11:38:47 +02:00
<td colspan="3"><h3><?php echo $LANG['Sendmail_welcome']; ?></h3></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['Sendmail_admin'] . ":"; ?></td>
<td><?php echo $SESSID_USERNAME; ?></td>
2022-08-18 14:01:52 +02:00
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['Sendmail_to'] . ":"; ?></td>
<td><input class="flat" type="text" name="to" /></td>
2022-08-18 14:01:52 +02:00
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['Sendmail_subject'] . ":"; ?></td>
<td><input class="flat" type="text" name="subject" value="<?php echo $LANG['Sendmail_subject_text']; ?>" /></td>
2022-08-18 14:01:52 +02:00
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['Sendmail_body'] . ":" ?></td>
2022-08-18 14:01:52 +02:00
<td>
<textarea class="flat" rows="10" cols="60" name="body"><?php echo $CONF['welcome_text']; ?></textarea>
2022-08-18 14:01:52 +02:00
</td>
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['Sendmail_button']; ?>" /></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
<td colspan="3" class="standout"><?php echo $message ?? '&nbsp;'; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
</table>
</form>
</div>