1

我如何在我的项目中起诉 EDMessage 框架?能否提供一些步骤。

我想使用发送邮件

NSString *text; // assume this exists this

headerFields = [NSMutableDictionary dictionary]; 
[headerFields setObject:@"Joe User <joe@example.com>" forKey:@"To"]; 
[headerFields setObject:@"Hi there" forKey:@"Subject"];

text = [text stringWithCanonicalLinebreaks];

mailAgent = [EDMailAgent mailAgentForRelayHostWithName:@"mail.example.com"]; 
[mailAgent sendMailWithHeaders:headerFields andBody:text];
4

1 回答 1

0

我是几年前将 EDMessage 从垃圾箱中取出的人,根据我的经验,如果你能让它在 iOS 上运行,我会感到非常惊讶——而且它真的很大。我知道很多人在 iOS 上使用“MailCore”在 Apple 框架之外发送邮件——你看过吗?

于 2012-09-12T12:13:46.670 回答