如何用 Java 发送电子邮件?

发布于 2024-08-26 00:21:06 字数 245 浏览 5 评论 0原文

嘿。我目前想用 Java 开发一个发送电子邮件的简单程序。不仅仅是几封电子邮件,而是很多(10k+) 顺便说一下,我有一份所有人都同意的订户名单。

无论如何,我无法通过 Gmail 或类似的方式发送这些电子邮件 - 他们不允许发送那么多电子邮件。所以基本问题是:如何通过将实际发送计算机设置为电子邮件服务器来发送电子邮件?

我确信我应该使用一些库,我听说过 ChillKat 或类似的东西。

有人可以解释/帮助我吗?将非常感激。

Hey. I currently want to develop a simple program in Java that sends out email. Not just a few emails, but actually a lot (10k+)
I have a subscribers list that all agree to it, by the way.

Anyway, I cannot send these emails via Gmail or anything like that - They do not allow that many emails to be sent. So the basic question is: How do I send emails by making the actual sending computer an email server?

I'm sure I should use some libraries, I heard about ChillKat or something like that.

Could anyone explain / help me out? Would be very much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫竹語嫣☆ 2024-09-02 00:21:06
  • 库 - commons-email,构建在更难使用的 JavaMail
  • 服务器
    • James - 基于 java
    • Postfix - 适用于 unix/linux (操作方法)
    • 还有更多 - 有很多 smtp 服务器。每个都需要一些重要的配置才能在生产中使用它。最好向管理员求助。
  • the library - commons-email, built ontop of the harder to use JavaMail
  • the servers
    • James - java based
    • Postfix - for unix/linux (howto)
    • many more - there are many smtp servers. Each requires some non-trivial configurations before you can use it in production. It is better to turn to an administrator for this.
叶落知秋 2024-09-02 00:21:06

James 是一个基于 Java 的非常强大的电子邮件服务器,您可以使用 JavaMail API。此外,James 集成了 mailet API,这对于提高您的功能非常有用邮件服务器。
您可以配置它以轻松更改配置文件来设置 gmail 上的网关。 参阅此主题

(请 可以在这里找到关于 James 和 mailet 的非常好的教程:与 James 一起工作< /a>

James is a very powerful email server base on Java which with you can use the JavaMail API. Moreover James integrate the mailet API which is very usefull to improve the functionality of your mail server.
You can configure it to set the gateway on gmail easily changing the config file. (see this topic)

You can find a very good tuto here about James and mailet: Working with James

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文