I'd like to be able to send text messages in my app on iOS. I know that I have to use the MessageUI framework. My question is if it is possible to automate the process, of sending, say 100 text messages at once, while modifying the message ever
Asked
Active
Viewed 1,420 times
0
-
2You know that *that* will never pass Apple's Gestapo, and probably rightfully so. – Marcel Hansemann Nov 11 '10 at 20:01
-
Monty Pythons's Spam skit comes to mind.... – Preet Sangha Nov 11 '10 at 20:03
-
No, think of this as a MailMerge kind of app. – Moshe Nov 11 '10 at 20:03
-
Already answered (it appears) - http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone - see the answer from jus' wondrin' – KevinDTimm Nov 11 '10 at 20:11
2 Answers
1
iPhone apps have absolutely no access whatsoever to SMS (without using private auto-reject calls), no sending, no intercepting received messages, no reading what messages on on the device. You can set up messages for the user to send, but you can't send anything automatically.

Matthew Frederick
- 22,245
- 10
- 71
- 97
0
I wouldn't advise doing so.
But if you did, I would advise doing it through your own SMTP client, as opposed to using the Messaging UI.
SMTP is a very simple protocol, or you can use an existing library, like http://code.google.com/p/skpsmtpmessage/

Brad
- 11,262
- 8
- 55
- 74
-
Would this require a separate server, or can I just use the phone's text messaging plan? – Moshe Nov 11 '10 at 20:10