So I am trying to send an in application email on the iPad using the MFMailComposeViewController. However, everything I am reading shows how to set it up and get it ready, but not how to actually send it! I have the delegate all set up and handling the button clicks, but am not sure how to say “Now go send the email”. Can anyone point me in the right direction? Thanks!
Share
If your delegate methods are set up correctly, you present the
MFMailComposeViewControllermodally and the view controller handles the sending itself. and calls the protocol methodmailComposeController: didFinishWithResult: error:when the user finishes with the modal view controller.