Reputation: 1
is there any way to call any method of 'send' button on MFMailComposeViewController in iPhone
Upvotes: 0
Views: 178
Reputation: 25419
No, Apple explicitly forbids this. The reason being that, otherwise, your app may send mail on behalf of your users without asking them permission to do so. You could send tons of spam for instance.
The same applies to the new SMS controller available in iOS4. You can prepare the message and even setup its recipients, but it's up to the user to finally send the message.
Upvotes: 1