Setp-3 Suppose you want to send SMS on button touch(click) then write the following code in your implementation (Sendemail.m) file.
MFMailComposeViewController *mailcontroller =[[MFMailComposeViewController alloc] init]; mailcontroller.mailComposeDelegate =self; // CHECK DEVICE CAN SEND EMAIL if([MFMailComposeViewController canSendMail]){ // Email subject. mailcontroller.subject=@“this is email subject. ”; // Email body mailcontroller.body=[NSString stringWithFormat:@“ This is the testing email. “]; // Email address you want to send . mailcontroller.recipients = [NSArray arrayWithObjects:@”example@.com”,nil]; // check the condition in case of model view controller is not dismissed then dismiss it. if (![[self presentedViewController] isBeingPresented]) { [self dismissViewControllerAnimated:YES completion:nil]; } // show Email view UI. [self presentViewController:mailcontroller animated:YES completion:nil]; } // delegate method of MFMailComposeViewController . -(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{ [controller dismissViewControllerAnimated:YES completion:nil]; }
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Follow these steps :
Step.1- Include MessageUI.framework in your project.
Step-2 Import MessageUI/MessageUI.h in your header file like that in my case
Setp-3 Suppose you want to send SMS on button touch(click) then write the following code in your implementation (Sendemail.m) file.