In iPhone programming, there are two ways to send mail. 1. openURL 2. In-App mail using messageUI framework.
Using second approach - in-app mail, it will show a view with to address, subject and body of message. Then it will have "Send" and "Cancel" buttons. On click of send button, message will be sent and then it will come back to app.
Now my question is that, is there any possiblity to send mail automatically without showing the view and clicking "send" button?
Because, I want to send 10 custom messages to 10 different email id's one after another. Possible or not?