sending email with gmail smtp ( secure layer ) in c++(在 C++ 中使用 gmail smtp(安全层)发送电子邮件)
问题描述
有人在 gmail smtp 服务器上取得了成功吗?smtp.gmail.com从 C++ 代码发送电子邮件?我知道它使用安全层,但我不知道如何实现这样一个.
does any one had success with gmail smtp servers ? smtp.gmail.com to send emails from c++ code ? i know its using secure layer but i have no idea how to implement such one .
推荐答案
这是我用的,不过它是为 linux 设计的,技术上应该可以在 windows 上工作
This is what i used, It was for linux though, It should Technically work on windows
http://johnwiggins.net/jwsmtp/
教程在那里,直截了当
http://johnwiggins.net/jwsmtp/example1.html
这是来自显示端口和 SMTP 服务器的站点的复制和粘贴.归功于约翰·维金斯
Here is a copy and paste from the site showing Ports and SMTP Server. Credit goes to john wiggins
jwsmtp::mailer mail(to.c_str( ),
from.c_str( ),
subject.c_str( ),
mailmessage.c_str( ),
smtpserver.c_str( ),
jwsmtp::mailer::SMTP_PORT,
false);
验证
mail.username("loginname");
mail.password("secret");
mail.authtype(mailer::PLAIN);
目前只支持LOGIN和PLAIN认证,默认LOGIN,设置为 PLAIN 调用 authtype 函数
Currently only LOGIN and PLAIN authentication are supported, LOGIN by default, to set to PLAIN call the authtype function
这篇关于在 C++ 中使用 gmail smtp(安全层)发送电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中使用 gmail smtp(安全层)发送电子邮件
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 近似搜索的工作原理 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- C++ 协变模板 2021-01-01