-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (143 loc) · 6.47 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Send Bulk Emails (Beta) 0.0.1</title>
<!--BITMAIL by Rodrigo Portillo - 2018-->
<!--https://velhobit.com.br-->
<!--Language-->
<script src="libs/language/pt_BR.js" type="text/javascript"></script>
<script src="libs/language/en_US.js" type="text/javascript"></script>
<!--Style-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header class="top">
<div class="logo">
<img src="assets/logo.png"/>
</div>
<h1>BitMail</h1>
<div class="spacer"></div>
<!--Language--->
<div class="language">
<button class="pt_br" id="langPT_BR">Português</button>
<button class="en_us" id="langEN_US">English</button>
</div>
</header>
<div class="wrap">
<form class="form_email" id="mailForm">
<div class="mail_details">
<div>
<input type="hidden" id="templatePath" name="templatePath"/>
</div>
<div>
<label for="name" rel="name">Name</label>
<input type="email" id="name" name="name"/>
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email"/>
</div>
<div>
<label for="password" rel="password">Password</label>
<input type="password" id="pass" name="pass"/>
</div>
<div>
<label for="host">Host</label>
<select id="host" name="host">
<option value="other" rel="custom">Custom</option>
<option value="gmail">Gmail / G Suit</option>
<option value="outlook">Outlook.com</option>
<!--<option value="yahoo">Yahoo!</option>
<option value="locaweb">Locaweb</option>
<option value="kinghost">Kinghost</option>
<option value="hostgator">Hostgator (no SSL)</option>
<option value="uolhost">Uolhost</option>-->
</select>
</div>
</div>
<div class="message_details">
<div>
<label for="subject" rel="subject">Subject</label>
<input type="text" id="subject" name="subject"/>
</div>
<div>
<label for="message" rel="message">Message</label>
<textarea id="message" name="message"></textarea>
</div>
<!--<div>
<label for="to">To (splited by comma)</label>
<textarea type="text" id="to" name="to"></textarea>
</div>-->
<div>
<label for="file" id="uploadDetails" rel="send_csv_file">Send a CSV File</label>
<button class="file" type="file" id="send" name="send" rel="send_file">Send e-mails CSV file</button>
<a class="obs" rel="click_here_to_check" href="https://velhobit.com.br/bitmail-como-preparar-os-arquivos-csv" target="blank">Click here to how format CSV file</a>
</div>
</div>
<div class="buttons">
<div>
<label for="mailTest" rel="mail_test">Mail Test</label>
<input id="mailTest" type="email"/>
</div>
<div>
<button id="sendTest" rel="test">Test</button>
</div>
<div>
<button id="submitButton" type="submit" rel="send" disabled>Send</button>
</div>
</div>
</form>
<form class="advanced">
<button class="show_ad" id="advButton" rel="advanced_panel">Advanced Options</button>
</form>
</div>
<!--Panel with more details-->
<div id="advancedPanel" class="panel">
<form id="advForm">
<div class="smtp_details">
<h2 rel="smtp_details">SMTP Details</h2>
<div>
<label for="smtp" rel="host_address">Host Address</label>
<input type="text" id="smtp"/>
</div>
<div>
<label for="port" rel="port">Port</label>
<input type="number" id="port" min="1"/>
</div>
<div>
<label for="secure" rel="secure">Secure</label>
<select id="secure">
<option value="false" rel="none">None</option>
<option value="ssl">SSL/TLS</option>
<option value="start">STARTTLS</option>
</select>
</div>
</div>
<div class="time">
<div>
<label rel="emails_per_hour">E-mails per hour</label>
<input type="number" id="byHour" min="1" value="200"/>
</div>
</div>
<div class="buttons">
<div>
<button id="submitButton" type="submit" rel="done">Done</button>
</div>
</div>
</form>
</div>
<!--Templates-->
<div id="templates" class="template_area">
</div>
<div class="modal" id="modal"></div>
<div id="status" class="statusbar">
</div>
<!--Scripts-->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="libs/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<script>if (window.module) module = window.module;</script>
</body>
</html>