web-dev-qa-db-ja.com

JavaからSMTPメッセージを送信するにはどうすればよいですか?

可能性のある複製:
Gmailを使用してJavaアプリからメールを送信するにはどうすればよいですか?

JavaからSMTPメッセージを送信するにはどうすればよいですか?

24
Allain Lalonde

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("[email protected]"));;
        msg.setRecipients(Message.RecipientType.TO,
        InternetAddress.parse("[email protected]", 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", "[email protected]", "<insert password here>");
        t.sendMessage(msg, msg.getAllRecipients());
        System.out.println("Response: " + t.getLastServerResponse());
        t.close();
    }
}

さて、プロジェクトの依存関係を最小限に抑えたい場合にのみ、このようにしてください。そうでない場合は、Apacheのクラスを使用することをお勧めします

http://commons.Apache.org/email/

よろしく

トヴアレヤコブセン

36
tovare

別の方法は、次のようにアスピリンを使用することです( https://github.com/masukomi/aspirin ):

MailQue.queMail(MimeMessage message)

..上記のようにmimemessageを作成した後。

アスピリンsmtp 'server'であるため、設定する必要はありません。ただし、メールサーバーやクライアントアプリケーションを受信するさまざまなスパムフィルタリングルールが適用されるため、広範な受信者に電子メールを送信するのは見かけほど簡単ではないことに注意してください。

6
Brad at Kademi

この投稿をご覧ください

Gmail、Yahoo、またはHotmailを使用してJavaアプリケーションでメールを送信するにはどうすればよいですか?

これはgmailに固有のものですが、SMTP資格情報を代用できます。

3
Ryan Lanciaux

JavaMail API および関連するjavadocsを参照してください。

2
Mason

Java Practices。で次のチュートリアルを参照してください。

http://www.javapractices.com/topic/TopicAction.do?Id=144

1
Jorge Ferreira
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);
}
0
user527619