rinku yadav
rinku yadav

Reputation: 121

How to send mail without showing the mail composer view

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

Answers (3)

Apurv
Apurv

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

Nimit Parekh
Nimit Parekh

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

Reference link

Upvotes: 1

beryllium
beryllium

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

Related Questions