I am developing an application in which there is form to fill containing username, age, email id, phone no. All these are in labels.
When user click on confirmation button i want an automatic email is send to the email address specified in the form giving details of the confirmation. This all process should be automatic and hidden from user.
I am afraid you are out of luck. MessageUI Framework does not support automatic emails. You can fill up To, subject and body using this frame work, but the user has to press the send button to send the email.This is a security feature of ios to prevent spam emails. If you really need automatic email functionality, you can sent the captured info to your server and send an email from server side, but make sure you are handling the user data securely.