我如何使用$ C $个cblocks或开发的C .NET框架++如何使用、框架、cblocks、NET

2023-09-04 01:27:35 作者:Rhythm 旋律

我目前正在写在C ++中的应用程序。我需要这个应用程序发送电子邮件。

I am currently writing an application in c++. I require this application to send an email.

这必须通过我的电子邮件帐户,因为我没有一个免费的电子邮件服务器,我的ISP提供。我终于发现了jwsmtp和vmime和POCO等这样的外部库,但无法让他们编入我的计划。

This has to be through my email account as I do not have a free email server which my isp provides. I finally found out about jwsmtp and vmime and poco and other such external libraries but was unable to get them compiled into my program.

最后,我决定使用.NET Framework发送电子邮件。但我知道我必须下载一个.dll文件和链接。

Finally I decided to use the .net framework for sending an email. But I realise that I have to download a .dll file and link.

哪些DLL我应该下载以及如何去有关使用.NET Framework的C ++?

Which dll am I supposed to download and how do I go about using the .net framework on c++?

没有任何一个有源$ C ​​$ C直接发送电子邮件,而无需通过我的Gmail帐户使用任何外部库?我的操作系统是Windows 7。

Does any one have source code for sending an email directly without using any external libraries through my gmail account? My operating system is windows 7.

推荐答案

真正利用.NET框架的C ++在你描述的是使用什么可以被称为托管C ++方式的必由之路。

Really the only way to leverage the .NET Framework in a C++ in the way you describe would be to use what can be called Managed C++.