このコードの問題は何ですか?どういうわけかTransport.send(message);
行で無限ループに入り、エラーメッセージも例外もなく、たぶん無限ループになります(5〜10分以上待たないのでわかりません)
final String username = "<mail_name>";
final String password = "<password>";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.Host", "smtp.gmail.com");
props.put("mail.smtp.port", "465");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("<mail_from>@gmail.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("<mail_to>@gmail.com"));
message.setSubject("Test Subject");
message.setText("Test");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
ここで私はいくつかの変更を加えていますが、それは私にとってはうまくいきます:
Session session = Session.getInstance(props,null);
あなたがしたようにメッセージオブジェクトをインスタンス化します。そして最後に:
Transport transport = session.getTransport("smtp");
String mfrom = "yourGmailUsernameWithout@"// example laabidiraissi
transport.connect("smtp.gmail.com", mfrom, "thepassword");
transport.sendMessage(message, message.getAllRecipients());
編集、お願いします。コピーして貼り付けて、この例を試してみてください。
package com.test;
import Java.util.Properties;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import org.junit.Test;
public class EmailService {
@Test
public void test(){
Properties props = System.getProperties();
props.put("mail.smtp.starttls.enable", true); // added this line
props.put("mail.smtp.Host", "smtp.gmail.com");
props.put("mail.smtp.user", "username");
props.put("mail.smtp.password", "password");
props.put("mail.smtp.port", "587");
props.put("mail.smtp.auth", true);
Session session = Session.getInstance(props,null);
MimeMessage message = new MimeMessage(session);
System.out.println("Port: "+session.getProperty("mail.smtp.port"));
// Create the email addresses involved
try {
InternetAddress from = new InternetAddress("username");
message.setSubject("Yes we can");
message.setFrom(from);
message.addRecipients(Message.RecipientType.TO, InternetAddress.parse("receivermail"));
// Create a multi-part to combine the parts
Multipart multipart = new MimeMultipart("alternative");
// Create your text message part
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setText("some text to send");
// Add the text part to the multipart
multipart.addBodyPart(messageBodyPart);
// Create the html part
messageBodyPart = new MimeBodyPart();
String htmlMessage = "Our html text";
messageBodyPart.setContent(htmlMessage, "text/html");
// Add html part to multi part
multipart.addBodyPart(messageBodyPart);
// Associate multi-part with message
message.setContent(multipart);
// Send message
Transport transport = session.getTransport("smtp");
transport.connect("smtp.gmail.com", "username", "password");
System.out.println("Transport: "+transport.toString());
transport.sendMessage(message, message.getAllRecipients());
} catch (AddressException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MessagingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
OK。それは私が最初に思ったよりも少し複雑です...私が得たものを要約するには:
session.setDebug(true);
。これをtrueに設定すると、すべての重要なプロセスがコンソールに対してデバッグされます。使用することをお勧めします。Transport transport = session.getTransport("smtps");
で切り替えることができます... JavaMail API Transportオブジェクトは、ポート(それぞれsmtp: 587、SMTP:465)Transportクラスの静的メソッドを使用してメッセージを送信することもできます(以前に保存すると、非静的sendMessageメソッドはメッセージを保存しません)が、今回はセッション作成時にjavax.mail.Authenticatorを使用する必要があります。このような:
Session session = Session.getInstance(props, new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("login", "password");
}
});
1.4.2 JavaMailApiには、この問題に対して1.4.7バージョンとは別の例外があります...
使用しない場合、静的メソッドで認証できません。インスタンスメソッドを使用する場合、できます。
かなりめちゃくちゃになりましたが、焦点を当てるべき基本的な概念がいくつかありました...
Simple Java Mail を使用すると簡単です。
Email email = new Email();
email.setFromAddress("lollypop", "[email protected]");
email.addRecipient("C.Cane", "[email protected]", RecipientType.TO);
email.setText("We should meet up!");
email.setTextHTML("<b>We should meet up!</b>");
email.setSubject("hey");
new Mailer("smtp.gmail.com", 25, "your user", "your password", TransportStrategy.SMTP_TLS).sendMail(email);
new Mailer("smtp.gmail.com", 587, "your user", "your password", TransportStrategy.SMTP_TLS).sendMail(email);
new Mailer("smtp.gmail.com", 465, "your user", "your password", TransportStrategy.SMTP_SSL).sendMail(email);
2要素ログインを有効にしている場合、Googleアカウントから アプリケーション固有のパスワード を生成する必要があります。
質問に記載されている動作を再現して修正することができます。
send
メソッドが停止する
SMTPTransport(Service).connect(String, int, String, String) line: 308
Gmail smtpホストのポートが間違っているため、接続は成功しません:465
587
に変更します
props.put("mail.smtp.port", "587");
そしてそれは動作します。