MessageFramework on CocoaDevリスト様々な可能性を、私はそれを自分で試していませんが、あなたはそれに打撃を与えることができ
"Sending emails from Cocoa"もPantomime、MailCoreとEdMessage(site for thisを含むいくつかのフレームワークを、一覧表示されますダウンしているようだが、があり、10.4と10.5のためにコンパイルされているので、iPhoneでも使えるはずです)
あなたはまた、特定のOmniNetworkingの枠組みの中で、OmniGroupのopen source frameworksを見てみることができ
CWMessage *message = [[CWMessage alloc] init];
CWInternetAddress *address;
address = [[CWInternetAddress alloc] initWithString:@"[email protected]"];
[message setFrom:address];
[address release];
address = [[CWInternetAddress alloc] initWithString:@"[email protected]"];
[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];
出典
2009-05-06 22:02:24
dbr
私はsmtpなしでそれをしたい、私を提案することができます.. – Rajneesh071