使用 SMTP 协议发送电子邮件的服务器端和客户端

发布于 2024-10-17 05:46:33 字数 83 浏览 1 评论 0原文

我想编写发送电子邮件的客户端和服务器端,我还应该遵守 RFC 821 中指定的 SMTP 协议的标准格式。

请您帮助并指导我如何启动它?

I want to write both client and server sides of sending an e-mail also I should attend to the standard format of SMTP protocol which is specified in RFC 821.

Would you please help and guide me that how can I start it?

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

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

发布评论

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

评论(1

海未深 2024-10-24 05:46:33

为什么要重新发明轮子?双方有很多实现都做得很好并且经过了充分的测试。

您错过了 Postfix(服务器)和 Outlook(客户端)的哪些功能?

如果您仍然想开始,请问自己

  • 如何创建 TCP 套接字并读/写它们
  • 如何进行连接和线程池
  • 如何实现状态机
  • 您在做什么相关主题? (SPF、DKIM、mbox 存储、Maildir 存储)
  • 您将使用什么进行用户身份验证和授权
  • (...在此输入数百个其他内容...)

Why would you reinvent the wheel? There are many implementations for both sides that do a very good job and are well tested.

What feature do you miss in let's say Postfix (server) and Outlook (client)?

If you still want to start, ask yourself

  • how to create TCP Sockets and read/write to them
  • how to do connection and thread pooling
  • how to implement a state machine
  • what are you doing with related topics? (SPF, DKIM, mbox storage, Maildir storage)
  • what are you going to use for user authentication and authorization
  • (... enter hundreds of other things here ...)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文