1
目前,我有電子郵件的NSArray的,我打開一看,結束電子郵件給所有這些電子郵件:MFMailComposeViewController IOS
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
mailer.mailComposeDelegate = self;
[mailer setSubject:@"App Support"];
NSArray *toRecipients = [NSArray arrayWithArray:emails];
[mailer setToRecipients:toRecipients];
NSString *emailBody = @"";
[mailer setMessageBody:emailBody isHTML:NO];
// only for iPad
mailer.modalPresentationStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:mailer animated:YES];
有沒有一種方法來發送電子郵件到這個名單不開放實際打開控制器(用戶不需要按下發送按鈕,也不能更改消息)?
我認爲它是一個很好的選擇,但我在哪裏可以找到xcode示例項目? – Alessandro
我會用一個例子編輯我的答案。 –
好的,謝謝我需要它 – Alessandro