I have a question that was hoping to get some help with, I got the initial mail composer to load and work fine, but I was wondering if it is possible to say add multiple buttons that can bring up mail composer, the thing that I am trying to do in my app is give the user the ability to email files to themselves via an attachement but is there a way to have multiple buttons that when it is clicked the mail composer will come up with that file. I hope that makes sense thanks in advance for anyone who helps
This is in my .h file
- (IBAction)Email:(id)sender;
and this is in my .m file
- (IBAction)Email:(id)sender
{
if ([MFMailComposeViewController canSendMail])
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
[mail setSubject:@"Questions or Concerns"];
NSArray *recipient = [NSArray arrayWithObjects:@"abc@yahoo.com", nil];
[mail setToRecipients:recipient];
NSString *body = @"Please Send Your Feedback or any Suggestoins";
[mail setMessageBody:body isHTML:NO];
[self presentViewController:mail animated:YES completion:Nil];
}
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
[self dismissViewControllerAnimated:YES completion:nil];
}
