-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (144 loc) · 6.43 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
152
153
154
155
156
157
158
<!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>Bulk Mail Sender</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap Form -->
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="black">
<div class="container py-5">
<div class="row ">
<div class="col-md-8 mx-auto inner p-5">
<h2 class="text-center fw-bold mb-4">Bulk Mail Sender</h2>
<!-- <div class='alert alert-success'>Email sent successfully.</div> -->
<form action="send.php" method="post" enctype="multipart/form-data">
<div class="row ">
<div class="col-6 mb-3">
<label for="sender_name" class="form-label">Sender Name</label>
<input type="text" class="button form-control" id="sender_name" name="sender_name" placeholder="Harendra" required>
</div>
<div class="col-6 mb-3">
<label for="sender" class="form-label">Sender Email</label>
<input type="email" class="form-control button" id="sender" name="sender" placeholder="aman@domain.com" required>
</div>
<div class="col-6 mb-3">
<label for="subject" class="form-label">Subject</label>
<input type="text" class="form-control button" id="subject" name="subject" placeholder="How are you?" required>
</div>
<div class="col-6">
<label for="attachments" class="form-label">Attachments (Multiple)</label>
<input type="file" class="form-control button" multiple id="attachments" name="attachments[]" placeholder="name@example.com">
</div>
</div>
<div class="mb-3">
<label for="recipient" class="form-label">Recipient Emails</label>
<textarea class="form-control button" id="recipient" name="recipient" placeholder="xyz@domain.com,
abc@domain.com" rows="3" required></textarea>
</div>
<div class="mb-3">
<label for="body" class="form-label">Body</label>
<textarea class="form-control button" id="body" name="body" placeholder="Hello,
Write your content here." rows="5" required></textarea>
</div>
<div>
<button class="btn btn-primary me-2 button" name="send" type="submit">Send Email</button>
<button class="btn btn-danger button" type="reset">Reset Form</button>
</div>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-center text-white">
<!-- Grid container -->
<div class="container p-4">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-facebook-f"></i
></a>
<!-- Twitter -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-linkedin-in"></i
></a>
<!-- Github -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="fab fa-github"></i
></a>
</section>
<!-- Section: Social media -->
<!-- Section: Form -->
<section class="">
<form action="">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-auto">
<p class="pt-2">
<strong>Sign up for our newsletter</strong>
</p>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-5 col-12">
<!-- Email input -->
<div class="form-outline form-white mb-4">
<input type="email" id="form5Example21" class="form-control" placeholder="Email address"/>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-auto">
<!-- Submit button -->
<button type="submit" class="btn btn-outline-light mb-4">
Subscribe
</button>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</form>
</section>
<!-- Section: Form -->
<!-- Section: Text -->
<section class="mb-4">
<p>
Email, SMS and more, all-in-one platform to help you grow your business
through building stronger
customer relationships.
</p>
</section>
<!-- Section: Text -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright:
<a class="text-white" href="#">Bulk Sender</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>