JSP - Invio di e-mail
In questo capitolo, discuteremo come inviare e-mail utilizzando JSP. Per inviare un'e-mail utilizzando un JSP, dovresti avere ilJavaMail API e il Java Activation Framework (JAF) installato sulla tua macchina.
È possibile scaricare l'ultima versione di JavaMail (Versione 1.2) dal sito Web standard di Java.
È possibile scaricare l'ultima versione di JavaBeans Activation Framework JAF (Versione 1.0.2) dal sito Web standard di Java.
Scarica e decomprimi questi file, nelle directory di primo livello appena create. Troverai una serie di file jar per entrambe le applicazioni. Devi aggiungere il filemail.jar e il activation.jar file nel tuo CLASSPATH.
Invia una semplice email
Ecco un esempio per inviare una semplice email dalla tua macchina. Si presume che il tuolocalhostè connesso a Internet e che è in grado di inviare un'e-mail. Assicurati che tutti i file jar dal pacchetto Java Email API e il pacchetto JAF siano disponibili in CLASSPATH.
<%@ page import = "java.io.*,java.util.*,javax.mail.*"%>
<%@ page import = "javax.mail.internet.*,javax.activation.*"%>
<%@ page import = "javax.servlet.http.*,javax.servlet.*" %>
<%
String result;
// Recipient's email ID needs to be mentioned.
String to = "[email protected]";
// Sender's email ID needs to be mentioned
String from = "[email protected]";
// Assuming you are sending email from localhost
String host = "localhost";
// Get system properties object
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// Get the default Session object.
Session mailSession = Session.getDefaultInstance(properties);
try {
// Create a default MimeMessage object.
MimeMessage message = new MimeMessage(mailSession);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
// Set Subject: header field
message.setSubject("This is the Subject Line!");
// Now set the actual message
message.setText("This is actual message");
// Send message
Transport.send(message);
result = "Sent message successfully....";
} catch (MessagingException mex) {
mex.printStackTrace();
result = "Error: unable to send message....";
}
%>
<html>
<head>
<title>Send Email using JSP</title>
</head>
<body>
<center>
<h1>Send Email using JSP</h1>
</center>
<p align = "center">
<%
out.println("Result: " + result + "\n");
%>
</p>
</body>
</html>
Mettiamo ora il codice sopra in SendEmail.jsp file e chiama questo JSP utilizzando l'URL http://localhost:8080/SendEmail.jsp. Ciò contribuirà a inviare un'e-mail all'ID e-mail fornito[email protected]. Riceverai la seguente risposta:
Send Email using JSP
Result: Sent message successfully....
Se desideri inviare un'e-mail a più destinatari, utilizza i seguenti metodi per specificare più ID e-mail:
void addRecipients(Message.RecipientType type, Address[] addresses)
throws MessagingException
Ecco la descrizione dei parametri:
type- Questo sarebbe impostato su TO, CC o BCC. Qui CC rappresenta Carbon Copy e BCC rappresenta Black Carbon Copy. Message.RecipientType.TO di esempio
addresses- Questa è la matrice dell'ID e-mail. Dovresti usare il metodo InternetAddress () mentre specifichi gli ID email
Invia un'e-mail HTML
Ecco un esempio per inviare un'e-mail HTML dalla tua macchina. Si presume che il tuolocalhostè connesso a Internet e che è in grado di inviare un'e-mail. Assicurati che tutti i file jar dalJava Email API package e il JAF package sono disponibili in CLASSPATH.
Questo esempio è molto simile al precedente, tranne per il fatto che qui stiamo usando il setContent() metodo per impostare il contenuto il cui secondo argomento è "text/html" per specificare che il contenuto HTML è incluso nel messaggio.
Utilizzando questo esempio, puoi inviare un contenuto HTML grande quanto richiesto.
<%@ page import = "java.io.*,java.util.*,javax.mail.*"%>
<%@ page import = "javax.mail.internet.*,javax.activation.*"%>
<%@ page import = "javax.servlet.http.*,javax.servlet.*" %>
<%
String result;
// Recipient's email ID needs to be mentioned.
String to = "[email protected]";
// Sender's email ID needs to be mentioned
String from = "[email protected]";
// Assuming you are sending email from localhost
String host = "localhost";
// Get system properties object
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// Get the default Session object.
Session mailSession = Session.getDefaultInstance(properties);
try {
// Create a default MimeMessage object.
MimeMessage message = new MimeMessage(mailSession);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
// Set Subject: header field
message.setSubject("This is the Subject Line!");
// Send the actual HTML message, as big as you like
message.setContent("<h1>This is actual message</h1>", "text/html" );
// Send message
Transport.send(message);
result = "Sent message successfully....";
} catch (MessagingException mex) {
mex.printStackTrace();
result = "Error: unable to send message....";
}
%>
<html>
<head>
<title>Send HTML Email using JSP</title>
</head>
<body>
<center>
<h1>Send Email using JSP</h1>
</center>
<p align = "center">
<%
out.println("Result: " + result + "\n");
%>
</p>
</body>
</html>
Usiamo ora il JSP sopra per inviare un messaggio HTML su un determinato ID email.
Invia allegato in e-mail
Di seguito è riportato un esempio per inviare un'e-mail con allegato dalla macchina:
<%@ page import = "java.io.*,java.util.*,javax.mail.*"%>
<%@ page import = "javax.mail.internet.*,javax.activation.*"%>
<%@ page import = "javax.servlet.http.*,javax.servlet.*" %>
<%
String result;
// Recipient's email ID needs to be mentioned.
String to = "[email protected]";
// Sender's email ID needs to be mentioned
String from = "[email protected]";
// Assuming you are sending email from localhost
String host = "localhost";
// Get system properties object
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// Get the default Session object.
Session mailSession = Session.getDefaultInstance(properties);
try {
// Create a default MimeMessage object.
MimeMessage message = new MimeMessage(mailSession);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
// Set Subject: header field
message.setSubject("This is the Subject Line!");
// Create the message part
BodyPart messageBodyPart = new MimeBodyPart();
// Fill the message
messageBodyPart.setText("This is message body");
// Create a multipart message
Multipart multipart = new MimeMultipart();
// Set text message part
multipart.addBodyPart(messageBodyPart);
// Part two is attachment
messageBodyPart = new MimeBodyPart();
String filename = "file.txt";
DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(filename);
multipart.addBodyPart(messageBodyPart);
// Send the complete message parts
message.setContent(multipart );
// Send message
Transport.send(message);
String title = "Send Email";
result = "Sent message successfully....";
} catch (MessagingException mex) {
mex.printStackTrace();
result = "Error: unable to send message....";
}
%>
<html>
<head>
<title>Send Attachment Email using JSP</title>
</head>
<body>
<center>
<h1>Send Attachment Email using JSP</h1>
</center>
<p align = "center">
<%out.println("Result: " + result + "\n");%>
</p>
</body>
</html>
Eseguiamo ora il JSP sopra per inviare un file come allegato insieme a un messaggio su un determinato ID e-mail.
Parte autenticazione utente
Se è necessario fornire l'ID utente e la password al server di posta elettronica per scopi di autenticazione, è possibile impostare queste proprietà come segue:
props.setProperty("mail.user", "myuser");
props.setProperty("mail.password", "mypwd");
Il resto del meccanismo di invio delle e-mail rimarrà come spiegato sopra.
Utilizzo dei moduli per inviare e-mail
È possibile utilizzare il modulo HTML per accettare i parametri di posta elettronica e quindi è possibile utilizzare il request oggetto per ottenere tutte le informazioni come segue:
String to = request.getParameter("to");
String from = request.getParameter("from");
String subject = request.getParameter("subject");
String messageText = request.getParameter("body");
Una volta che hai tutte le informazioni, puoi utilizzare i programmi sopra menzionati per inviare e-mail.