0

I want to do a logistics project that entails scanning alot of qr codes(500) all of which contain a unique email address and message. I've seen scanner apps that will batch scan them but in order to send the messages they must be opened first and then you have to press the send button. I want to send all the messages or else I wouldn't have scanned their qr code. Any idea of a scanner app that will auto send the emails immediately upon scanning the code? I'm using an iphone for scanning and sending the emails

thanks for taking the time to help!

Lance

skaffman
  • 398,947
  • 96
  • 818
  • 769
  • possible duplicate of [Can I send email programmatically in iPhone app?](http://stackoverflow.com/questions/4119522/can-i-send-email-programmatically-in-iphone-app) – Caleb Feb 13 '12 at 06:52
  • If you're looking for an existing app, then you're asking in the wrong place. You might try [superuser](http://superuser.com/) instead. If that's the case, flag your question and ask a moderator to migrate it for you -- that's better than cross posting the question. – Caleb Feb 13 '12 at 06:59

1 Answers1

1

You can't send e-mail without user interaction using the email API provided by Apple in iOS. Two ways to do it are:

  1. Build your own SMTP client into your app, so that you can connect directly to a SMTP server and send messages.

  2. Construct a web service to which you can send e-mail messages, or perhaps just the information required to construct and send the messages. Have your app send the messages via this web service.

Caleb
  • 124,013
  • 19
  • 183
  • 272