-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsendMail.jsp
21 lines (19 loc) · 886 Bytes
/
sendMail.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ page import="java.util.*, javax.mail.*, javax.mail.internet.*, javax.mail.Session.*" %>
<%
String host = "localhost";
Properties prop = new Properties();
prop.put("mail.smtp.host", host);
Session s = Session.getInstance(prop,null);
MimeMessage message = new MimeMessage(s);
InternetAddress from = new InternetAddress("[email protected]");
message.setFrom(from);
InternetAddress to = new InternetAddress("[email protected]");
message.addRecipient(Message.RecipientType.TO, to);
message.setSubject("Test from JavaMail.");
message.setText("Hello from JavaMail!");
Transport.send(message);
%>
<html>
<p align="center">A Message has been sent.<br>Check your inbox.</p>
<p align="center"><a href="mailjavax.jsp">Click here to send another!</a></p>
</html>