エンドユーザーにメールを送信しました。しかし、その時点でGmailアカウントを使用する場合、smtp.domain.comをsmtp.gmail.comに変更する必要があります.yahoomail.comからメールを送信する場合と同じように、smtp.gmail.comをsmtp.mailに変更する必要があります. yahoo.com. ドメインユーザーからメールを送信するためのJavaの解決策はありますか?つまり、コードをユニバーサル用に作成したいということです。誰もが解決策を持っているので、私に提案してください。私のコードは以下です
enter code here
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 SendMailSSL {
public static void main(String[] args) {
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("xyz.123@gmail.com", "123456");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("xyz.123@gmail.com"));
message.setRecipient(Message.RecipientType.TO,
new InternetAddress("abc.456@gmail.com"));
message.setSubject("mail to user");
message.setText("Hello world.....");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}