forked from MvA-Projects/MvA-Anonymous-Email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (28 loc) · 1.27 KB
/
index.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
<!DOCTYPE html>
<html dir="ltr" lang="en"><head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico?v=2" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico?v=2" type="image/x-icon">
<link rel="icon" type="image/x-icon" href="favicon.ico?v=2">
<title>Anonymous E-mail</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:100" rel="stylesheet">
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/2.2.4/email.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head><body>
<div class="centered">
<p class="p-title"> Send E-mail anonymously. </p>
<hr>
<p> Do you need to send someone an E-mail without them knowing who sent
it?<br>
This anonymous E-mail tool will help you! All E-mails are sent with <br>
the "mva_anonymous@zoho.com" E-mail address.There are NO log files. <br>
Click "send" it will say "promise" and your Msg is sent.</p>
<hr>
<p> To: <input id="email-to" type="email"> </p>
<p> Subject: <input id="email-subject" type="text"> </p>
<p> Content: <textarea rows="10" colums="100" id="email-content"></textarea>
</p>
<button onclick="sendEmail()">Send</button> </div>
<p> © 2020 AIindustries </p>
</body></html>