0

Possible Duplicate:
How i send email from IPhone?

I want to send a predefined mail through my i-phone app.I know we can use MFMailComposeViewController.but i dont want to open a separate MFMailComposeView.when user click the send button mail should send automatically.thanks in advance.

Community
  • 1
  • 1
Sat
  • 1,616
  • 3
  • 22
  • 40

1 Answers1

1

Unfortunately iOS does not allow sending emails without the user noticing.

What you can do instead is use a server that sends the email for you. Like so:

iPhone -> sends request to server that includes the recipient, body, subject of the email -> server will send the email for the user

Note that this means that the sender address is not the users one.

sliver
  • 1,650
  • 2
  • 14
  • 23