当前位置:   article > 正文

计算机网络——实现smtp和pop3邮件客户端

计算机网络——实现smtp和pop3邮件客户端

实验目的

运用各种编程语言实现基于 smtp 协议的 Email 客户端软件。

实验内容

1. 选择合适的编程语言编程实现基于 smtp 协议的 Email 客户端软件。

2. 安装 Email 服务器或选择已有的 Email 服务器,验证自己的 Email 客户端软件是否能进行正常的 Email 收发功能。

实验过程

使用学校地的SMTP服务器做发送,这里操作比较简单,无需授权码,直接使用账号密码登录即可

编写基于smtp的邮件发送客户端,这里调用了Curl库来实现,这个库支持多种通信协议

编写基于pop3的邮件接收客户端(在查询相关资料后,pop3相较于smtp更常用于邮件接收,此处选择pop3来实现更贴近实际情况)

关键代码讲解

smtp邮件发送客户端,主要邮件发送函数,使用了 libcurl 库。首先初始化一个 CURL 句柄,然后设置 SMTP 服务器的地址、发送者的电子邮件地址和密码。接着,函数设置邮件的接收者,构造邮件的内容。函数调用 curl_easy_perform 函数来发送邮件,如果发送失败,会打印出错误信息。最后,函数清理并释放所有使用过的资源。

  1. void sendEmail(
  2. const std::string& smtpServer,
  3. const std::string& from,
  4. const std::vector<std::string>& to,
  5. const std::string& password,
  6. const std::string& subject,
  7. const std::string& body
  8. ) {
  9. CURL *curl;
  10. CURLcode res = CURLE_OK;
  11. struct curl_slist *recipients = NULL;
  12. curl = curl_easy_init();
  13. if(curl) {
  14. curl_easy_setopt(curl, CURLOPT_USERNAME, from.c_str());
  15. curl_easy_setopt(curl, CURLOPT_PASSWORD, password.c_str());
  16. curl_easy_setopt(curl, CURLOPT_URL, smtpServer.c_str());
  17. curl_easy_setopt(curl, CURLOPT_MAIL_FROM, from.c_str());
  18. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  19. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  20. for(const auto& recipient : to) {
  21. recipients = curl_slist_append(recipients, recipient.c_str());
  22. }
  23. curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients);
  24. std::string email = "To: " + to[0] + "\r\n" +
  25. "From: " + from + "\r\n" +
  26. "Subject: " + subject + "\r\n\r\n" +
  27. body;
  28. curl_easy_setopt(curl, CURLOPT_READFUNCTION, payload_source);
  29. curl_easy_setopt(curl, CURLOPT_READDATA, &email);
  30. res = curl_easy_perform(curl);
  31. if(res != CURLE_OK)
  32. std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
  33. curl_slist_free_all(recipients);
  34. curl_easy_cleanup(curl);
  35. }
  36. }

pop3邮件接收客户端,也是使用libcurl的库进行连接,接收用户名和密码通过pop3方式登录,返回邮件列表

  1. void receiveEmail(const std::string& pop3Server, const std::string& username, const std::string& password) {
  2. CURL *curl;
  3. CURLcode res = CURLE_OK;
  4. curl = curl_easy_init();
  5. if(curl) {
  6. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  7. curl_easy_setopt(curl, CURLOPT_USERNAME, username.c_str());
  8. curl_easy_setopt(curl, CURLOPT_PASSWORD, password.c_str());
  9. curl_easy_setopt(curl, CURLOPT_URL, pop3Server.c_str());
  10. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_ALL);
  11. std::string response;
  12. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
  13. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
  14. res = curl_easy_perform(curl);
  15. if(res != CURLE_OK)
  16. std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
  17. else
  18. std::cout << response << std::endl;
  19. curl_easy_cleanup(curl);
  20. }
  21. }

运行示例

编译运行smtp邮件客户端发送邮件

用户输入信息:发送方邮箱地址/发送方邮箱授权码/接收方邮箱地址/邮件主题/邮件内容,显示发送过程中的日志信息

  • 邮件接受效果(此处示例为群发两封邮件)

POP3客户端接收邮件用户输入信息登录,然后列出所有的邮件

相关代码

BJTU_CS_Learning/computernetwork at main · JJLi0427/BJTU_CS_Learning (github.com)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/427125
推荐阅读
相关标签
  

闽ICP备14008679号