开源Cocoa / Cocoa-Touch POP3 / SMTP库? [英] Open Source Cocoa/Cocoa-Touch POP3/SMTP library?

查看:153
本文介绍了开源Cocoa / Cocoa-Touch POP3 / SMTP库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要编写一个与POP3 / SMTP服务器通信的示例应用程序。而不是重新发明轮子与BSD套接字和CFNetwork类型调用,我很好奇,如果目前有任何开源库已经照顾了很多脏的工作?

I'm looking to write a sample application speaking to a POP3/SMTP server. Instead of re-inventing the wheel with BSD sockets and CFNetwork type calls, I'm curious if there is currently any open source libraries that already take care of alot of the dirty work? I've tried Googling without much luck for anything.

也许有一些我可以忽略的东西来简化这个。

Perhaps there's something I'm overlooking to simplify this.

谢谢。

推荐答案

CocoaDev上的MessageFramework 列出了各种可能性,

从Cocoa发送电子邮件还列出了几个框架,包括 Pantomime MailCore 和EdMessage( site for this 似乎已关闭,但有一个 github上的镜像,它也被修改为编译为10.4,以及10.5 - 所以应该在iPhone上工作)

"Sending emails from Cocoa" also lists several frameworks, including Pantomime, MailCore and EdMessage (the site for this seems to be down, but there is a mirror on github, which has also been modified to compile for 10.4, as well as 10.5 - so should work on the iPhone)

使用Pantomime的示例代码(来自上述博客文章):

Example code using Pantomime (from the above blog-post):

CWMessage *message = [[CWMessage alloc] init];

CWInternetAddress *address;

address = [[CWInternetAddress alloc] initWithString:@"from@gmail.com"];
[message setFrom:address];
[address release];

address = [[CWInternetAddress alloc] initWithString:@"to@somewhere.com"];
[address setType:PantomimeToRecipient];
[message addRecipient:address];
[address release];

[message setSubject:@"test"];

[message setContentType: @"text/plain"];
[message setContentTransferEncoding: PantomimeEncodingNone];
[message setCharset: @"us-ascii"];

[message setContent: [@"This is a simple content." dataUsingEncoding: NSASCIIStringEncoding]];

smtp = [[CWSMTP alloc] initWithName:@"smtp.gmail.com" port:465];
[smtp setDelegate: self];
[smtp setMessage: message];
[message release];

ssl = YES;
mechanism = @"PLAIN";

[smtp connectInBackgroundAndNotify];

这篇关于开源Cocoa / Cocoa-Touch POP3 / SMTP库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆