gpt4 book ai didi

java - 如何配置环境以使用JavaMail?

转载 作者:搜寻专家 更新时间:2023-11-01 04:03:48 25 4
gpt4 key购买 nike

我需要用 JavaMail 发送简单的 html 消息。而当我试图在互联网上寻找一些带有解释的好例子时,接下来的每一个例子都让我更加生气和愤怒。

所有这些愚蠢的示例都包含复制和粘贴的 Java 代码,它们的区别仅在于注释和一个很好的免责声明,即首先您应该配置您的 smtp 和 pop3 服务器。

我知道没有人愿意为某些具体产品做广告,但恕我直言,配置服务器是最难的部分。那么,任何人都可以给我一些关于配置具体服务器(例如 Kerio 或任何其他服务器)的真正有用的信息(没有 Java 代码)吗?

我现在拥有的是下一个异常(exception):

250 2.0.0 Reset state
javax.mail.SendFailedException: Invalid Addresses;
nested exception is:
com.sun.mail.smtp.SMTPAddressFailedException: 550 5.7.1 Relaying to <mymail@mycompany.com> denied (authentication required)

更新。对之前所有文本的简单重新表述是:假设您有 Windows、jdk,没有其他任何东西。你想制作 java 程序并在你的机器上运行它。这个程序应该发送“Hello world!”到您的 gmail 帐户。列出您的步骤。

UPD2。这是代码:

Properties props = new Properties ();
props.setProperty ("mail.transport.protocol", "smtp");
props.setProperty ("mail.host", "smtp.gmail.com");
props.setProperty ("mail.user", "my_real_address_1@gmail.com");
props.setProperty ("mail.password", "password_from_email_above");

Session mailSession = Session.getDefaultInstance (props, null);
mailSession.setDebug (true);
Transport transport = mailSession.getTransport ();

MimeMessage message = new MimeMessage (mailSession);
message.setSubject ("HTML mail with images");
message.setFrom (new InternetAddress ("my_real_address_1@gmail.com"));
message.setContent ("<h1>Hello world</h1>", "text/html");
message.addRecipient (Message.RecipientType.TO,
new InternetAddress ("my_real_address_2@gmail.com"));

transport.connect ();
transport.sendMessage (message,
message.getRecipients (Message.RecipientType.TO));

异常(exception)是:

RSET
250 2.1.5 Flushed 3sm23455365fge.10
com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS command first. 3sm23455365fge.10
at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1829)
at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1368)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:886)
at com.teamdev.imgmail.MailSender.main(MailSender.java:33)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
...

最佳答案

如果您正在寻找配置 SMTP 服务器的教程,那么您不应该寻找 JavaMail。只需在您选择的服务器上查找教程(Kerio,例如 ... 或 EximSendMailApache JamesPostfix)或在 Serverfault 上询问.任何兼容 SMTP 的服务器都可以很好地与 JavaMail 配合使用。

或者,您甚至可以使用任何“标准”邮件提供商的基础设施。例如,我使用 Google Apps帐户以及 Google 的 SMTP 基础设施,以便从我们的 Java 应用程序发送邮件。 Using a Gmail account如果您不想设置自己的 SMTP 服务器来简单地测试 JavaMail,无论如何这是一个很好的起点。

作为最后一个选项,您甚至可以查找 MX Records域并将您的邮件直接发送到收件人的 SMTP 服务器。有一些常见的陷阱可以解决困难。

作为最后一点,您必须研究如何避免您的邮件被过滤为垃圾邮件 - 这本身就是一个很大的话题。在这里,依赖标准提供商会有所帮助,这些提供商会处理您在托管自己的服务器时可能遇到的一些问题。

顺便说一句:关于您发布的错误消息:SMTP 服务器拒绝中继消息。这是如果您的 SMTP 服务器(认为它)在 example.com 上运行并且您作为 bob@example.net 发送到 alice@example.org,您要求 SMTP 服务器充当中继。这是几年前的常见做法,直到 - 您猜对了 - 被垃圾邮件发送者滥用。从那时起,鼓励邮政局长拒绝转发。您有两个选择:在发送邮件之前进行身份验证或仅发送到托管在您服务器上的帐户(即在 example.com 上,例如 alice@example.com)。

编辑:

这里有一些代码可以帮助您开始使用 authenticationg(适用于 Gmail 帐户,但也适用于您自己的服务器)

private Session createSmtpSession() {
final Properties props = new Properties();
props.setProperty("mail.smtp.host", "smtp.gmail.com");
props.setProperty("mail.smtp.auth", "true");
props.setProperty("mail.smtp.port", "" + 587);
props.setProperty("mail.smtp.starttls.enable", "true");
// props.setProperty("mail.debug", "true");

return Session.getDefaultInstance(props, new javax.mail.Authenticator() {

protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("john.doe@gmail.com", "mypassword");
}
});
}

关于java - 如何配置环境以使用JavaMail?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1946032/

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