前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Chilkat—-开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

Chilkat—-开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

作者头像
全栈程序员站长
发布2022-07-10 17:26:05
5420
发布2022-07-10 17:26:05
举报

大家好,又见面了,我是全栈君。

Chilkat 是一个很好的开源站点,有各种开源库。

开发语言主要有Classic ASP ?C ? C++ ? C# ? Delphi ActiveX ? Delphi DLL ? Visual FoxPro ? Java ? MFC ? Objective-C ? Perl ? PHP ActiveX ? PHP Extension ? PowerShell ? Python ? Ruby ? SQL Server ? Unicode C ? Unicode C++ ? Visual Basic 6.0 ? VB.NET ? VBScript

而它支持的平台则有:

MS Visual C/C++ Linux/CentOS/Heroku C/C++ MAC OS X C/C++ C++ Builder

Solaris C/C++ iOS C/C++ Android C/C++ Raspberry Pi C/C++

Embedded Linux C/C++ (ARM, MIPS, PowerLinux) FreeBSD C/C++ HP-UX C/C++ MinGW C/C++

Chilkat 主页:http://www.chilkatsoft.com/

开发包下载连接:http://www.chilkatsoft.com/downloads.asp 这里能够依据你的须要下载不同版本号的开发包。

以下我就以win7 x64 + VS2010 C/C++开发一个邮件发送程序样例,做个教程:

首先下载开发包:

一、打开开发包下载页面:http://www.chilkatsoft.com/downloads.asp

选择 Download Chilkat C / C++ Libraries,如图:

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

点击后进入了。http://www.chilkatsoft.com/downloads_CPP.asp。假设你的其它平台请自行选择,我的是windows 所以我选择例如以下:

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

点击进去后就是开发版本号的选择了,不要着急向下滑动,选择你须要的开发包。我的是VS2010 我的选择例如以下:

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

下载后。将他解压到一个目下。我解压到我的D盘,解压的文件有三个。include,libs,license.txt如图,

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

———————————————————————————-

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

二、接下来就是配置我们的VS2010了

过程例如以下:

1、创建一个測试project:

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

2、加入包括头文件,刚才解压在D盘还记得吗?呵呵:

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

3、加入lib库我这里拿ChilkatDbg.lib演示,还要加入其它的库哟!完整的例如以下

crypt32.lib ws2_32.lib D:\chilkat-9.5.0-x86-vc10\libs\ChilkatDbg.lib

Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包
Chilkat----开源站点之VS2010 CKMailMan一个很好的邮件发送开源开发包

3.加入实例代码。我这里直接贴出来:

//官网上关于邮件发送的说明文档连接:http://www.example-code.com/cpp/mht_emailHtmlFile.asp

//关于邮件开发文档:http://www.example-code.com/cpp/smtp.asp

//这里有很多开发样例。点击左边的选择框。就能看到不同方法,然后点击自己想要的样例就能够了。

//CKMailTest.cpp

#include “stdafx.h”

#include<stdio.h> #include<stdlib.h>

#include “../include/CkMailMan.h” #include “../include/CkEmail.h” #include “../include/CkMht.h”

代码语言:javascript
复制
void ChilkatSample(void)
    {
    //  The mailman object is used for sending and receiving email.
    CkMailMan mailman;

    //  Any string argument automatically begins the 30-day trial.
    bool success;
    success = mailman.UnlockComponent("30-day trial");
    if (success != true) {
        printf("%s\n",mailman.lastErrorText());
        return;
    }

    //  Set the SMTP server.
    mailman.put_SmtpHost("smtp.chilkatsoft.com");

    //  Set the SMTP login/password (if required)
    mailman.put_SmtpUsername("myUsername");
    mailman.put_SmtpPassword("myPassword");

    //  Create a new email object
    CkEmail email;

    email.put_Subject("This is a test");
    email.put_Body("This is a test");
    email.put_From("Chilkat Support <support@chilkatsoft.com>");
    email.AddTo("Chilkat Admin","admin@chilkatsoft.com");
    //  To add more recipients, call AddTo, AddCC, or AddBcc once per recipient.

    //  Call SendEmail to connect to the SMTP server and send.
    //  The connection (i.e. session) to the SMTP server remains
    //  open so that subsequent SendEmail calls may use the
    //  same connection.
    success = mailman.SendEmail(email);
    if (success != true) {
        printf("%s\n",mailman.lastErrorText());
        return;
    }

    //  Some SMTP servers do not actually send the email until
    //  the connection is closed.  In these cases, it is necessary to
    //  call CloseSmtpConnection for the mail to be  sent.
    //  Most SMTP servers send the email immediately, and it is
    //  not required to close the connection.  We'll close it here
    //  for the example:
    success = mailman.CloseSmtpConnection();
    if (success != true) {
        printf("Connection to SMTP server not closed cleanly.\n");
    }

    printf("Mail Sent!\n");
    }
 int _tmain(int argc, _TCHAR* argv[])
 
 {
 
      
ChilkatSample();//直接调用

     return 0;

 
 }

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/115267.html原文链接:https://javaforall.cn

本文参与?腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2022年2月6,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客?前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与?腾讯云自媒体分享计划? ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
云数据库 SQL Server
腾讯云数据库 SQL Server (TencentDB for SQL Server)是业界最常用的商用数据库之一,对基于 Windows 架构的应用程序具有完美的支持。TencentDB for SQL Server 拥有微软正版授权,可持续为用户提供最新的功能,避免未授权使用软件的风险。具有即开即用、稳定可靠、安全运行、弹性扩缩等特点。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
http://www.vxiaotou.com