5

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?

Marvin Pinto
  • 30,138
  • 7
  • 37
  • 54
rinku yadav
  • 121
  • 3
  • 10

3 Answers3

4

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

Community
  • 1
  • 1
beryllium
  • 29,669
  • 15
  • 106
  • 125
  • 1
    the link you have given is not the answer what rinku yadav asked. Even i was looking for the same but when i click on your given link.. it was useless to (rinku yadav) question.. – Rupesh Oct 01 '12 at 10:45
1

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

Nimit Parekh
  • 16,776
  • 8
  • 50
  • 72
0

Using openURL method of UIApplication, you can send the mail without using mail composer. For that you should select "mailto" option.

Apurv
  • 17,116
  • 8
  • 51
  • 67