aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/public/compose.html
blob: 5f0b9043204e7e05111a850c53e7d67935803095 (plain) (blame)
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
{{template "head.html"}}

<h1>koushin</h1>

<p>
	<a href="/mailbox/INBOX">Back</a>
</p>

<h2>Compose new message</h2>

<form method="post" action="">
	<input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">

	<label for="from">From:</label>
	<input type="email" name="from" id="from" value="{{.Message.From}}">
	<br><br>
	<label for="to">To:</label>
	<input type="email" name="to" id="to" multiple value="{{.Message.ToString}}">
	<br><br>
	<label for="subject">Subject:</label>
	<input type="text" name="subject" id="subject" value="{{.Message.Subject}}">
	<br><br>
	<label for="text">Body:</label><br>
	<textarea name="text" id="text" cols="80" rows="20">{{.Message.Text}}</textarea>
	<br><br>
	<input type="submit" value="Send">
</form>

{{template "foot.html"}}