gpt4 book ai didi

email - 如何在VC++中发送电子邮件?

转载 作者:行者123 更新时间:2023-12-02 00:35:54 34 4
gpt4 key购买 nike

我是 VC++ 和编程的新手。

我必须在 VC++ 中编写代码来发送电子邮件。

我该怎么做?请帮忙!!

最佳答案

以下是我使用 ATL 类的方法。我认为您需要 VC++ 的付费版本之一才能获得 ATL。您将需要您的电子邮件服务器的名称。

CSMTPConnection smtp;
if (!smtp.Connect(m_strEmailServer))
return false;
// start generating the email message; remember to call CoInitialize somewhere in the app before this
CMimeMessage msg;
msg.SetSubject(m_strSubject);
msg.SetSender(m_strSender);
// repeat the following as necessary
msg.AddRecipient(strSingleRecipient);
msg.AddText(m_strBody);
if (!smtp.SendMessage(msg))
return false;
return true;

关于email - 如何在VC++中发送电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4597374/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com