API JavaMail - Invio di e-mail con allegato
Ecco un esempio per inviare un'e-mail con allegato dal tuo computer. Il file sulla macchina locale èfile.txtcollocato in / home / manisha / . 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.
Imposta il messaggio effettivo come di seguito:
messageBodyPart.setText("This is message body");
Crea un oggetto MimeMultipart. Aggiungi il messageBodyPart sopra con il messaggio effettivo impostato in esso, a questo oggetto multipart.
Quindi aggiungi l'allegato creando un Datahandler come segue:
messageBodyPart = new MimeBodyPart(); String filename = "/home/manisha/file.txt"; DataSource source = new FileDataSource(filename); messageBodyPart.setDataHandler(new DataHandler(source)); messageBodyPart.setFileName(filename); multipart.addBodyPart(messageBodyPart);
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 SendAttachmentInEmail, 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.Multipart;
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 SendAttachmentInEmail {
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");
// Get the Session object.
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");
// Create the message part
BodyPart messageBodyPart = new MimeBodyPart();
// Now set the actual message
messageBodyPart.setText("This is message body");
// Create a multipar message
Multipart multipart = new MimeMultipart();
// Set text message part
multipart.addBodyPart(messageBodyPart);
// Part two is attachment
messageBodyPart = new MimeBodyPart();
String filename = "/home/manisha/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);
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 SendAttachmentInEmail.java nella directory:/home/manisha/JavaMailAPIExercise. Avremmo bisogno dei jars javax.mail.jar e activation.jar nel classpath. Esegui il comando seguente per compilare la classe (entrambi i vasi sono posizionati nella directory / home / manisha /) dal prompt dei comandi:
javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendAttachmentInEmail.java
Ora che la classe è compilata, esegui il comando seguente per eseguire:
java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendAttachmentInEmail
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: