I want to create an app that have 5 textfield and a textView:
1 - Name
2 - Surname
3 - Telephone
4 - \"your email\" (user email, not address email receiver)
This should work
MFMailComposeViewController *mailSendingController = [MFMailComposeViewController new];
[mailSendingController setSubject:@"Feedback"];
[mailSendingController setToRecipients:[NSArray arrayWithObject:@"feedback@us.com"]];
[mailSendingController setMessageBody:myText isHTML:NO];
mailSendingController.mailComposeDelegate = self;
[self presentModalViewController:mailSendingController animated:YES];
where myText is a string that you make with your info