Mail Composer Address Problem

Posted by Arun Sharma on Stack Overflow See other posts from Stack Overflow or by Arun Sharma
Published on 2010-06-01T09:30:06Z Indexed on 2010/06/01 9:33 UTC
Read the original article Hit count: 229

Filed under:
|

I found email composer sample code from iphone OS Ref Library. Here is a code-

Code: NSArray *toRecipients = [NSArray arrayWithObject:@"[email protected]"]; NSArray *ccRecipients = [NSArray arrayWithObjects:@"[email protected]", @"[email protected]", nil]; NSArray *bccRecipients = [NSArray arrayWithObject:@"[email protected]"];

My question is how to take user's input? Here all email address are predefined in code. so what are the IDs of to, CC, Bcc, subject and body fields?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c