gpt4 book ai didi

java - 使用 SMTP 发送电子邮件

转载 作者:行者123 更新时间:2023-12-02 00:37:46 25 4
gpt4 key购买 nike

您好,我编写了这段代码来连接 SMTP,它对于 smtp.gmail.com 工作正常,但对于 IP 10.5.128.146、端口号 25 的客户端则不行。

这里的代码是......你能建议我任何解决方案吗?

 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", "10.5.128.146");
props.put("mail.smtp.socketFactory.port", "25");
props.put("mail.smtp.socketFactory.class",
"javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "25");

Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("username","password");
}
});

try {

Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("xyz@mydomain.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("abc@otherdomain.com"));
message.setSubject("Testing Subject");
message.setText("Dear Mail Crawler," +
"\n\n No spam to my email, please!");

Transport.send(message);

System.out.println("Done");

} catch (MessagingException e) {
throw new RuntimeException(e);
}
}

}

显示连接超时错误。任何人都可以告诉我这真的是一个编程问题还是服务器端问题。如果是服务器端那么我可以建议他们做什么。

提前鸣谢

最佳答案

您似乎修改了 GMail 连接片段。 GMail 需要 SSL,但传统的“端口 25”SMTP 服务器不需要,因此握手无法正常工作。

我建议删除 mail.smtp.socketFactory.class 和 mail.smtp.auth 属性。

关于java - 使用 SMTP 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7263053/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com