プロジェクトで 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];