I have a button on my app that allows the User to send an email with destination address, and BODY already filled out. I'm doing it this way.... [[UIApplication sharedApplication] openURL:]; But this method is launching the Mail app in EDIT mode. The user has the option of editing the Body and the Destination.
I am looking for a way where I can send an EMAIL with out going into edit mode. I don't want the user editing anything in the EMAIL... I just want him to click a "SEND EMAIL" button, and the email is sent.
How is this done in iOS... also, how would this be done in ANDROID?