Reputation: 121
I am developing an iPhone application in which I have to send mail to only recipient without showing the MFMailComposer UI view (i.e without user interaction). Can please tell me how to achieve this?
Upvotes: 5
Views: 5091
Reputation: 17186
Using openURL method of UIApplication, you can send the mail without using mail composer. For that you should select "mailto" option.
Upvotes: 0
Reputation: 16864
You can also use the gmail mail facilities into the xcode
For that following to gives much more tutorial and source code here
Upvotes: 1
Reputation: 29767
You cannot send Email without user acceptance. But there are a lot of web-services in internet which can send Email. I guess some app uses those services or uses own.
See also How can I send mail from an iPhone application
Upvotes: 4