-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
49 lines (49 loc) · 1.42 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
<!DOCTYPE>
<html>
<head>
<title>Options for Send via Gmail+</title>
<script src="options.js"></script>
<style>
.input_option
{
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
}
</style>
</head>
<body>
<br />
<table>
<tr><td width="20%">
<img src="images/gmail-extension-64.png" width="64" height="64" />
</td>
<td>
<h3>Options for Send via Gmail+</h3>
</td>
</tr>
</table>
<br />
<form>
<div id="addresses_option" class="input_option">
<strong>Enter comma-separated list of primary email addresses for accounts you logged in. </a> Emails:</strong>
<br />
(When sendig you will be able to choose one of these addresses.<br />
If you have multiple addresses configured in Gmail per account <br />
please enter the mail one (used to log in). Leave blank to use default).
<br />
<input id="addresses" type="text" name="addresses" value="" style="width:400px">
</div>
<br />
<div id="subject_prefix_option" class="input_option">
<strong>Enter a prefix for the subject field when sending from Gmail:</strong>
<br />
(If the title of the current page is "Nobel prize winners", and your chosen <br />
prefix is "Interesting URL", the mail will have the subject<br />
"Interesting link - foo bar")<br />
<input id="subject_prefix" type="text" name="subject_prefix" value="" style="width:400px">
</div>
<br />
<input type="submit" value="Save" />
</form>
</body>
</html>