-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.jsp
60 lines (54 loc) · 1.71 KB
/
index.jsp
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
<%--
Document : index
Created on : 2 Apr, 2021, 9:56:02 AM
Author : swati
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Java Mail API</title>
</head>
<body>
<center>
<h1>SEND E-MAIL VIA JAVA MAIL API</h1>
<form id="myform" action ="sendemail">
<table>
<tr>
<td>
<label for="email">Receiver Email</label>
</td>
<td>
<input type="text" name="email">
</td>
</tr>
<tr>
<td>
<label for="subject">Subject</label>
</td>
<td>
<input type="text" name="subject">
</td>
</tr>
<tr>
<td colspan="2">
<label for="emailbody">Body</label>
</td>
</tr>
<tr>
<td colspan="2">
<textarea name="emailbody" form="myform" rows="6" cols="50">
</textarea>
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" form="myform" value="Send Mail" />
</td>
</tr>
</table>
</form>
</center>
</body>
</html>