JavaMail API - Gmail SMPT Server
We wszystkich poprzednich rozdziałach używaliśmy serwera JangoSMPT do wysyłania e-maili. W tym rozdziale dowiemy się o serwerze SMPT dostarczanym przez Gmaila. Gmail (między innymi) oferuje bezpłatne korzystanie z publicznego serwera SMTP.
Szczegóły dotyczące serwera SMTP Gmaila można znaleźć tutaj . Jak widać w szczegółach, do wysyłania wiadomości e-mail za pośrednictwem serwera SMTP Gmaila możemy używać połączenia TLS lub SSL.
Procedura wysyłania wiadomości e-mail przy użyciu serwera SMTP Gmaila jest podobna do opisanej w rozdziale Wysyłanie wiadomości e-mail , z tym wyjątkiem, że zmienilibyśmy serwer hosta. Warunkiem wstępnym jest, aby adres e-mail nadawcy był aktywnym kontem Gmail. Spróbujmy na przykładzie.
Utwórz klasę Java
Utwórz plik Java SendEmailUsingGMailSMTPktórych zawartość jest jak poniżej:
package com.tutorialspoint;
import java.util.Properties;
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.MimeMessage;
public class SendEmailUsingGMailSMTP {
public static void main(String[] args) {
// Recipient's email ID needs to be mentioned.
String to = "[email protected]";//change accordingly
// Sender's email ID needs to be mentioned
String from = "[email protected]";//change accordingly
final String username = "abc";//change accordingly
final String password = "*****";//change accordingly
// Assuming you are sending email through relay.jangosmtp.net
String host = "smtp.gmail.com";
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", "587");
// 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");
// Now set the actual message
message.setText("Hello, this is sample for to check send "
+ "email using JavaMailAPI ");
// Send message
Transport.send(message);
System.out.println("Sent message successfully....");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
Tutaj host jest ustawiony jako smtp.gmail.com, a port jest ustawiony jako 587 . Tutaj mamy włączone połączenie TLS.
Skompiluj i uruchom
Teraz, gdy nasza klasa jest gotowa, skompilujmy powyższą klasę. Zapisałem klasę SendEmailUsingGMailSMTP.java w katalogu:/home/manisha/JavaMailAPIExercise. Potrzebowalibyśmy jars javax.mail.jar i aktywacja.jar w ścieżce klas. Wykonaj poniższe polecenie, aby skompilować klasę (oba słoiki są umieszczone w katalogu / home / manisha /) z wiersza polecenia:
javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendEmailUsingGMailSMTP.java
Teraz, gdy klasa jest skompilowana, wykonaj poniższe polecenie, aby uruchomić:
java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendEmailUsingGMailSMTP
Sprawdź wyjście
W konsoli poleceń powinien pojawić się następujący komunikat:
Sent message successfully....