1

In my application i want to send images to user without their interaction.which option is better Through Web service or Through Smtp email

if user press home button while image sending is in progress.apple provides 10 minutes to complete your small tasks. which of them will perform better ?

is there any chance of app rejection if i use webservice or Smtp Email ?

thanks jawad

Jawad Ali
  • 13,556
  • 3
  • 32
  • 49

2 Answers2

2

It's better to send it by web service. As apple's privacy policy says you can't send Email or SMS without user's Interaction. If you send the image using Email there are chances of your app getting rejected.

Regarding the performance web service will work fine.

Rushi
  • 4,553
  • 4
  • 33
  • 46
  • Sending email in the background without the MailComposer won't be a problem. Im using that code in about 15 of my Live apps. Apple might want to see the user click "Send Score" though, and not just have you send it and THEN notify them that it was sent. Hope that makes sense. – Jawad Ali Apr 02 '13 at 13:30
  • written here .. http://stackoverflow.com/questions/2827014/iphone-sdk-send-email-in-background-in-iphone-app – Jawad Ali Apr 02 '13 at 13:31
  • 17. Privacy 17.1 Apps cannot transmit data about a user without obtaining the user's prior permission and providing the user with access to information about how and where the data will be used It's from https://developer.apple.com/appstore/resources/approval/guidelines.html – Rushi Apr 02 '13 at 13:38
  • what do you say about the answer given below ? – Jawad Ali Apr 02 '13 at 17:30
1

is there any chance of app rejection if i use webservice or Smtp Email ?

NO application will not rejected.BUt User confirmation needed.

chirag
  • 1,090
  • 9
  • 13