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
for this you have to create webservice. because without this the only option is inbuilt mail method of ios
This could be done by sending the data to a server and sending it from there. I dont see a way of sending it directly from the device without using the mail app.