-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (57 loc) · 1.7 KB
/
index.html
File metadata and controls
73 lines (57 loc) · 1.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mail Spammer List</title>
<meta name="description" content="Mail Spammer List" />
<meta name="author" content="Pepe Fabra Valverde" />
<meta
name="keywords"
content="mail,spammer,list,teams report,teams,distribution lists"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Mail Spammer List</h1>
</header>
<main class="container">
<div class="list">
<h2>Original</h2>
<p>Body of emails to filter:</p>
<textarea name="original" id="original"></textarea>
</div>
<div class="list">
<h2>Ignore</h2>
<p>Dynamic ignoring list:</p>
<textarea name="ignore" id="ignore"></textarea>
<br />
Currently ignoring <span
class="ignoring-emails-count"
id="ignoring-emails-count"
>0</span
>
</div>
<div class="list">
<h2>Blacklist</h2>
<p>Always ignoring the following addresses:</p>
<textarea name="blacklist" id="blacklist"></textarea>
<br />
Currently ignoring <span
class="ignoring-emails-count"
id="blacklist-emails-count"
>0</span
>
</div>
</main>
<footer>
<button id="getAddressesButton">Get addresses</button>
Batch size of
<input type="number" name="batchSize" id="batchSize" value="499" />
addresses
<button id="fromTeamReport">From Team report</button>
</footer>
</body>
<script src="main.js"></script>
</html>