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

sending email with gmail smtp ( secure layer ) in c++(在 C++ 中使用 gmail smtp(安全层)发送电子邮件)

本文介绍了在 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(安全层)发送电子邮件

基础教程推荐