-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailer.html
More file actions
59 lines (56 loc) · 2.05 KB
/
emailer.html
File metadata and controls
59 lines (56 loc) · 2.05 KB
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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EmailFaster</title>
<link rel="stylesheet" href="index.css">
<script src="https://unpkg.com/read-excel-file@4.x/bundle/read-excel-file.min.js"></script>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a class="active" href="emailer.html">Send Emails</a>
</div>
<h1>Start Sending Emails Quickly!</h1>
<label for="email">
Email Column
</label>
<select id="email" name="email">
<option value="None">None</option>
</select>
<br />
<br />
<label for="options">
Select Columns to Use
</label>
<br/>
<br />
<div id="options" name="options">
</div>
<br />
<br />
<input class="subject" type="text" id="subject" size="50" placeholder="Subject"></input>
<br />
<br />
<input type="file" id="data"></input>
<br /><br />
<button type="button" onclick="GetPreviousInfo()">Previous Email</button>
<button type="button" onclick="GetNextInfo()">Next Email</button>
<button type="button" onclick="UpdateInfo()">Preview Email</button>
<button type="button" onclick="SendEmail()">Send Email</button>
<br />
<p class="instructions">To automatically fill template with data use the headers selected for the columns; ex: {First Name}, {Last Name}, {Address}</p>
<p class="instructions" id="recipient-num"> Recipient 0 / 0</p>
<textarea rows="25" cols="50" id="template" style="font-family: 'Times New Roman', Times, serif; font-size: larger;" placeholder="Enter template here"></textarea>
<textarea readonly rows="25" cols="50" id="preview" style="font-family: 'Times New Roman', Times, serif; font-size: larger;"
placeholder="Email Template Example
Hello {First Name},
We are here to inform you about something...
Sincerely,
{Owner}."></textarea>
<script src="emailer.js">
</script>
</body>
</html>