使用 Java 套接字发送电子邮件

发布于 2024-12-08 19:08:28 字数 1468 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

一般来说,这应该可行,您“只需”自己实现整个 SMTP 协议维基百科上提供了相关介绍。我真的会为此使用图书馆。

In general this should work, you 'just' have to implement the whole SMTP protocol yourself. An introduction is available on Wikipedia. I'd really use a library for this.

凉城凉梦凉人心 2024-12-15 19:08:28

我想说你应该为此使用一个库。如果这确实是一个 Gmail 帐户,您需要验证自己的身份,因为 Gmail 不允许匿名 smtp。我不知道套接字的java细节,但一般来说,您应该对套接字做更多的事情而不仅仅是创建一个。 unix 网络编程第一部分介绍了套接字的使用。即邮件服务器发送对您的请求的答复,您也可以从套接字对中读取该答复。

I would say you should use a library for this. If this is really a gmail account you need to authenticate yourself because gmail doesn't allow anonymous smtp. I don't know the java details for sockets, but in general you should do more with sockets than just create one. unix network programming part I covers the use of sockets. i.e. the mailserver sends an answer to your requests which you could also read from your socket pair.

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