-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoptions.html
52 lines (46 loc) · 1.46 KB
/
options.html
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
<!doctype html>
<html>
<head>
<title>Send Page Options</title>
<style>
body {
}
div, button {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div>
<h2>Mail Client Type</h2>
What type of mail client do you use?<br/>
If you are using a web mail client the tab will be kept open for the web mail client.<br/>
If you are using a local mail client, which is registered to handle mailto links, a new tab will quickly appear
and disappear again after having opened the mail client.
<p>
<select id="mailClientType">
<!-- Keep the created tab open (Default) -->
<option value="web">Web Mail Client</option>
<!-- Close the created tab after opening mail client-->
<option value="local">Local Mail Client</option>
</select>
</p>
</div>
<div>
<h2>Message Body Template</h2>
By default the generated Mail will only contain the page title as subject and the url to send as text.
But if you want you may define text that will appear before and after the URL.
<p>
Text before URL:<br/>
<textarea rows="4" cols="80" id="bodyPrefix"></textarea><br/>
Text after URL:<br/>
<textarea rows="4" cols="80" id="bodyPostfix"></textarea>
</p>
</div>
<div id="status"></div>
<div>
<button id="save">Save</button>
</div>
<script src="options.js"></script>
</body>
</html>