Java から SMTP メッセージを送信するにはどうすればよいですか?
6 に答える
Gmail smtp の例を次に示します。
import java.io.*;
import java.net.InetAddress;
import java.util.Properties;
import java.util.Date;
import javax.mail.*;
import javax.mail.internet.*;
import com.sun.mail.smtp.*;
public class Distribution {
public static void main(String args[]) throws Exception {
Properties props = System.getProperties();
props.put("mail.smtps.host","smtp.gmail.com");
props.put("mail.smtps.auth","true");
Session session = Session.getInstance(props, null);
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("mail@tovare.com"));;
msg.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("tov.are.jacobsen@iss.no", false));
msg.setSubject("Heisann "+System.currentTimeMillis());
msg.setText("Med vennlig hilsennTov Are Jacobsen");
msg.setHeader("X-Mailer", "Tov Are's program");
msg.setSentDate(new Date());
SMTPTransport t =
(SMTPTransport)session.getTransport("smtps");
t.connect("smtp.gmail.com", "admin@tovare.com", "<insert password here>");
t.sendMessage(msg, msg.getAllRecipients());
System.out.println("Response: " + t.getLastServerResponse());
t.close();
}
}
プロジェクトの依存関係を最小限に抑えたい場合にのみ、この方法を実行してください。それ以外の場合は、Apache のクラスを使用することを強くお勧めします。
http://commons.apache.org/email/
よろしく
トヴ・アー・ヤコブセン
別の方法は、次のようにアスピリン ( https://github.com/masukomi/aspirin ) を使用することです。
MailQue.queMail(MimeMessage message)
..上記のように mimemessage を作成した後。
Aspirinはsmtp の「サーバー」であるため、構成する必要はありません。ただし、メール サーバーとクライアント アプリケーションを受信するさまざまなスパム フィルタリング ルールが適用されるため、幅広い受信者に電子メールを送信することは、見かけほど単純ではないことに注意してください。
この投稿をご覧ください
GMail、Yahoo、または Hotmail を使用して Java アプリケーションで電子メールを送信するにはどうすればよいですか?
これは gmail に固有のものですが、smtp 資格情報に置き換えることができます。
JavaMail APIおよび関連する javadocを参照してください。
Java Practices の次のチュートリアルを参照してください。
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;
public void postMail(String recipients[], String subject,
String message , String from) throws MessagingException {
//Set the host smtp address
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.jcom.net");
// create some properties and get the default Session
Session session = Session.getDefaultInstance(props, null);
session.setDebug(false);
// create a message
Message msg = new MimeMessage(session);
// set the from and to address
InternetAddress addressFrom = new InternetAddress(from);
msg.setFrom(addressFrom);
InternetAddress[] addressTo = new InternetAddress[recipients.length];
for (int i = 0; i < recipients.length; i++) {
addressTo[i] = new InternetAddress(recipients[i]);
}
msg.setRecipients(Message.RecipientType.TO, addressTo);
// Optional : You can also set your custom headers in the Email if you Want
msg.addHeader("MyHeaderName", "myHeaderValue");
// Setting the Subject and Content Type
msg.setSubject(subject);
msg.setContent(message, "text/plain");
Transport.send(msg);
}