0

j2ee アプリケーションの 1 つで、SMTP を使用してメールを送信しました。

私のコードは次のようになります。

package email_sender;

import java.util.Properties;

import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

public class registration
{
    public void send(String name, String email)
    {
        String email_format =   "TEMP MESSAGE";

        Properties props = new Properties();
        props.put("mail.smtp.host", "smtp.gmail.com");
        props.put("mail.smtp.socketFactory.port", "465");
        props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.port", "465");

        Session session = Session.getDefaultInstance(props,
            new javax.mail.Authenticator() 
            {
                protected PasswordAuthentication getPasswordAuthentication() 
                {
                    return new PasswordAuthentication("gmail@gmail.com","gmail_password");
                }
            });


        try 
        {

            Message message = new MimeMessage(session);
            message.setFrom(new InternetAddress("gmail.com"));
            message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email));
            message.setSubject("TEST subject");
            message.setContent(email_format, "text/html");
            Transport.send(message); 
        }
        catch (Exception e) 
        {
            throw new RuntimeException(e);
        }
    }
}

登録フォームのテストフォーマットです。

実行には約 9 秒かかります。

2MBPS のブロードバンド接続を使用しています。

プロセスに問題がありますか、それともメールを送信するためのより良い方法を見つける必要がありますか?

4

0 に答える 0