-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailu.html
42 lines (40 loc) · 1.32 KB
/
mailu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Send Email</title>
</head>
<body>
<form id="emailForm">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Send Email</button>
</form>
<script>
// Handle form submission
document.getElementById('emailForm').addEventListener('submit', function(event) {
event.preventDefault(); // Prevent default form submission
const email = document.getElementById('email').value;
// Make an HTTP POST request to the server-side endpoint
fetch('http://localhost:3000/sendEmail', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ email })
})
.then(response => {
if (response.ok) {
console.log('Email sent successfully');
} else {
console.error('Error sending email');
}
})
.catch(error => {
console.error('Error:', error);
});
});
</script>
</body>
</html>