如何在 c++ 中使用 yahoo 或 gmail 发送电子邮件
我想在我的 C++ 程序中发送一封电子邮件,看起来有点复杂。有没有办法使用 yahoo 或 gmail 来发送我的电子邮件?
I wanna send an email in my c++ program, it seems little complex. Is there way to use yahoo or gmail to use them to send my emails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在 a .net环境。
This tutorial has everything you need, if you are working in a .net environment.
基本的互联网搜索揭示了以下内容:
简而言之,如果你有 gmail 或 yahoo 帐户,你可以使用他们的 SMTP 服务器使用上述三个链接之一发送邮件,以帮助您使用 SMTP。
A basic internet search reveals the following:
In short if you have a gmail or yahoo account you can use their SMTP server to send messages using either of the three links above to assist you in using SMTP.
您可以尝试使用 POCO 库中的 SMTPClientSession 。
You could try using the SMTPClientSession from the POCO library.