Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <pre><code> -(void) EmailMethod { MFMailComposeViewController *picker=[[MFMailComposeViewController alloc]init]; picker.mailComposeDelegate = self; [picker setToRecipients:@"mailid@mymail.com"]; [picker setSubject:@"Place your subject of mail here."]; [picker setMessageBody:@"Place your body of mail here." isHTML:YES]; [self presentModalViewController:picker animated:YES]; } - (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error { switch (result) { case MFMailComposeResultCancelled: UIAlertView *ErrorAlert = [[UIAlertView alloc] initWithTitle:@"Canceled !!" message:@"Mail sending cancelled." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil]; [ErrorAlert show]; [ErrorAlert release]; break; case MFMailComposeResultSaved: UIAlertView *ErrorAlert = [[UIAlertView alloc] initWithTitle:@"Saved" message:@"Mail saved to Drafts." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil]; [ErrorAlert show]; [ErrorAlert release]; break; case MFMailComposeResultSent: UIAlertView *ErrorAlert = [[UIAlertView alloc] initWithTitle:@"Email Sent" message:@"Thank you for recommending us to your friends via Email." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil]; [ErrorAlert show]; [ErrorAlert release]; break; case MFMailComposeResultFailed: UIAlertView *ErrorAlert = [[UIAlertView alloc] initWithTitle:@"Error !!" message:@"Failed to send mail." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil]; [ErrorAlert show]; [ErrorAlert release]; break; default: UIAlertView *ErrorAlert = [[UIAlertView alloc] initWithTitle:@"Error !!" message:@"Failed to send mail." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil]; [ErrorAlert show]; [ErrorAlert release]; break; } [self becomeFirstResponder]; [self dismissModalViewControllerAnimated:YES]; </code></pre> <p>}</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload