aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/public/compose.html
blob: 6bc2c7a0fc3ef2a97758437dfca4547fdf98e8c2 (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
30
31
32
33
34
35
36
37
38
39
40
41
{{template "head.html" .}}

<h1>alps</h1>

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

<h2>Compose new message</h2>

<form method="post" action="" enctype="multipart/form-data">
  <input type="hidden" name="message_id" value="{{.Message.MessageID}}">
  <input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">

  <label for="from">From:</label>
  <input type="email" name="from" id="from" required value="{{.Message.From}}">
  <br><br>
  <label for="to">To:</label>
  <input type="email" name="to" id="to" multiple required 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>
  <label for="attachments">Attachments:</label>
  <input type="file" name="attachments" id="attachments" multiple>
  {{range .Message.Attachments}}
    <br>
    <label>
      <input type="checkbox" name="prev_attachments" value="{{.Node.PathString}}" checked>
      {{.Node}}
    </label>
  {{end}}
  <br><br>
  <input type="submit" name="save_as_draft" value="Save as draft">
  <input type="submit" value="Send">
</form>

{{template "foot.html"}}