aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_email.html
blob: e14c56ab475f319094bf5974763c0f1e8fb3e993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!-- INCLUDE overall_header.html -->

<a id="maincontent"></a>

<h1>{L_ACP_MASS_EMAIL}</h1>

<p>{L_ACP_MASS_EMAIL_EXPLAIN}</p>

<!-- IF S_WARNING -->
	<div class="errorbox">
		<h3>{L_WARNING}</h3>
		<p>{WARNING_MSG}</p>
	</div>
<!-- ENDIF -->

<form id="acp_email" method="post" action="{U_ACTION}">

<fieldset>
	<legend>{L_COMPOSE}</legend>
<dl>
	<dt><label for="group">{L_SEND_TO_GROUP}{L_COLON}</label></dt>
	<!-- EVENT acp_email_group_options_prepend -->
	<dd><select id="group" name="g">{S_GROUP_OPTIONS}</select></dd>
	<!-- EVENT acp_email_group_options_append -->
</dl>
<dl>
	<dt><label for="usernames">{L_SEND_TO_USERS}{L_COLON}</label><br /><span>{L_SEND_TO_USERS_EXPLAIN}</span></dt>
	<dd><textarea name="usernames" id="usernames" rows="5" cols="40">{USERNAMES}</textarea></dd>
	<dd><!-- EVENT acp_email_find_username_prepend -->[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]<!-- EVENT acp_email_find_username_append --></dd>
</dl>
<dl>
	<dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>
	<dd><input name="subject" type="text" id="subject" value="{SUBJECT}" /></dd>
</dl>
<dl>
	<dt><label for="message">{L_MASS_MESSAGE}{L_COLON}</label><br /><span>{L_MASS_MESSAGE_EXPLAIN}</span></dt>
	<dd><textarea id="message" name="message" rows="10" cols="60">{MESSAGE}</textarea></dd>
</dl>
<dl>
	<dt><label for="priority">{L_MAIL_PRIORITY}{L_COLON}</label></dt>
	<dd><select id="priority" name="mail_priority_flag">{S_PRIORITY_OPTIONS}</select></dd>
</dl>
<dl>
	<dt><label for="banned">{L_MAIL_BANNED}{L_COLON}</label><br /><span>{L_MAIL_BANNED_EXPLAIN}</span></dt>
	<dd><input id="banned" name="mail_banned_flag" type="checkbox" class="radio" /></dd>
</dl>
<dl>
	<dt><label for="send">{L_SEND_IMMEDIATELY}{L_COLON}</label></dt>
	<dd><input id="send" type="checkbox" class="radio" name="send_immediately" checked="checked" /></dd>
</dl>

<!-- EVENT acp_email_options_after -->

<p class="submit-buttons">
	<input class="button1" type="submit" id="submit" name="submit" value="{L_SEND_EMAIL}" />&nbsp;
	<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
</p>
{S_FORM_TOKEN}
</fieldset>
</form>

<!-- INCLUDE overall_footer.html -->