tags:

views:

58

answers:

1

I have no problem sending emails from within my app.

Right now it requires:

  • User presses an email button.
  • presentModalViewController brings up the email view (with pre-defined To:, Subject:, and Body:)
  • User presses "Send"
  • Email is sent.
  • dismissModalViewController removes email view.

Can I somehow make it:

  • User presses an email button.
  • Email is sent.

?

Thank you in advance,

Eugene

+1  A: 

No. This is an important issue, and it is this way for security reasons. If this was not the necessary method, you could use an app to send massive spam from every installed device!

chpwn
Thank you for the quick response!
yujean