如何在 VC++ 中发送电子邮件?
我是 VC++ 和编程新手。
我必须用 VC++ 编写代码来发送电子邮件。
我该怎么办?请帮忙!!
I am new to VC++ and programming.
I have to write code to send a email in VC++.
How do I go about it? Please help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是我使用 ATL 类的方法。我认为您需要 VC++ 的付费版本之一才能获得 ATL。您将需要您的电子邮件服务器的名称。
Here's how I do it with the ATL classes. I think you need one of the paid versions of VC++ to get ATL. You will need the name of your email server.
您的软件是否需要 MAPI?该界面为用户安装的默认电子邮件程序提供了相当简单的界面。
如果是这样,那么您可以使用如下所示的内容:
CPP 一半:
这是来自我的代码库 - 我并没有努力从我自己的库中解开它。但你应该能够“填空”。
祝你好运!
Can your software require MAPI? That's an interface that provides a fairly simple interface to whatever the user's installed as default email program is.
If so, then you can use something like the following:
And the CPP half:
This is from my codebase - and I'm not making an effort to unravel it from my own libraries. But you should be able to "fill in the blanks".
Good luck!