How to send mail without showing the mail composer view

I am developing an iPhone application in which I should send mail only to the recipient without displaying the UI MFMailComposer view (without user interaction). Can you tell me how to achieve this?

+5
source share
3 answers

You cannot send email without user acceptance. But there are many web services on the Internet that can send emails. I assume that some application uses these services or uses its own.

See also How to send mail from an iPhone application.

+4
source

You can also use gmail mail services in xcode

+1

Using the OpenURL method for UIApplication, you can send mail without using the mail composer. To do this, you must select the "mailto" option.

0
source

All Articles