API JavaMail - Invio di e-mail con immagini in linea
Ecco un esempio per inviare un'e-mail HTML dalla tua macchina con un'immagine in linea. Qui abbiamo utilizzato il server JangoSMPT tramite il quale le email vengono inviate al nostro indirizzo email di destinazione. La configurazione è spiegata nel capitolo Configurazione dell'ambiente .
Per inviare un'e-mail con un'immagine in linea, i passaggi seguiti sono:
Ottieni una sessione
Creare un oggetto MimeMessage predefinito e impostare Da, A, Oggetto nel messaggio.
Crea un oggetto MimeMultipart.
Nel nostro esempio avremo una parte HTML e un'immagine nell'email. Quindi prima crea il contenuto HTML e impostalo nell'oggetto multiparte come:
// first part (the html) BodyPart messageBodyPart = new MimeBodyPart(); String htmlText = "<H1>Hello</H1><img src=\"cid:image\">"; messageBodyPart.setContent(htmlText, "text/html"); // add it multipart.addBodyPart(messageBodyPart);
Quindi aggiungi l'immagine creando un Datahandler come segue:
// second part (the image) messageBodyPart = new MimeBodyPart(); DataSource fds = new FileDataSource( "/home/manisha/javamail-mini-logo.png"); messageBodyPart.setDataHandler(new DataHandler(fds)); messageBodyPart.setHeader("Content-ID", "<image>");
Quindi impostare la multiparte nel messaggio come segue:
message.setContent(multipart);
Invia il messaggio utilizzando l'oggetto Transport.
Crea classe Java
Crea un file di classe java SendInlineImagesInEmail, i cui contenuti sono i seguenti:
package com.tutorialspoint;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
public class SendInlineImagesInEmail {
public static void main(String[] args) {
// Recipient's email ID needs to be mentioned.
String to = "[email protected]";
// Sender's email ID needs to be mentioned
String from = "[email protected]";
final String username = "manishaspatil";//change accordingly
final String password = "******";//change accordingly
// Assuming you are sending email through relay.jangosmtp.net
String host = "relay.jangosmtp.net";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", "25");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
// Create a default MimeMessage object.
Message message = new MimeMessage(session);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
// Set Subject: header field
message.setSubject("Testing Subject");
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
// first part (the html)
BodyPart messageBodyPart = new MimeBodyPart();
String htmlText = "<H1>Hello</H1><img src=\"cid:image\">";
messageBodyPart.setContent(htmlText, "text/html");
// add it
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataSource fds = new FileDataSource(
"/home/manisha/javamail-mini-logo.png");
messageBodyPart.setDataHandler(new DataHandler(fds));
messageBodyPart.setHeader("Content-ID", "<image>");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
message.setContent(multipart);
// Send message
Transport.send(message);
System.out.println("Sent message successfully....");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
Poiché stiamo utilizzando il server SMTP fornito dal provider host JangoSMTP, dobbiamo autenticare il nome utente e la password. La classe javax.mail.PasswordAuthentication viene utilizzata per autenticare la password.
Compila ed esegui
Ora che la nostra classe è pronta, compiliamo la classe precedente. Ho salvato la classe SendInlineImagesInEmail.java nella directory:/home/manisha/JavaMailAPIExercise. Avremmo bisogno dei jar javax.mail.jar e activation.jar nel classpath. Esegui il comando seguente per compilare la classe (entrambi i jar sono posizionati nella directory / home / manisha /) dal prompt dei comandi:
javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendInlineImagesInEmail.java
Ora che la classe è compilata, esegui il comando seguente per eseguire:
java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendInlineImagesInEmail
Verifica output
Dovresti vedere il seguente messaggio sulla console di comando:
Sent message successfully....
Poiché sto inviando un'e-mail al mio indirizzo Gmail tramite JangoSMTP, la seguente posta verrà ricevuta nella posta in arrivo del mio account Gmail: