aboutsummaryrefslogblamecommitdiff
path: root/plugins/base/public/compose.html
blob: 4d69c8109a70a38edf4cd3b5ee779459939d7746 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                        








                                         
                                                            

                                                                               
                                       
                                                                                     

                                   
                                                                                              





                                                                                        
                


                                                                        
                                                                        


                                          
                        
{{template "head.html"}}

<h1>koushin</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="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>
	<br><br>
	<input type="submit" name="save_as_draft" value="Save as draft">
	<input type="submit" value="Send">
</form>

{{template "foot.html"}}