在 C++ 中使用 gmail smtp(安全层)发送电子邮件

2022-01-17 00:00:00 smtp ssl gmail c++

有人在 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

相关文章