How to programmatically send SMS on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:14:20Zhttp://stackoverflow.com/feeds/question/10848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone12How to programmatically send SMS on the iPhone?Marco2008-08-14T09:51:06Z2009-11-26T10:48:39Z
<p>Does anybody know if it's possible, and how, to programmatically send a SMS from the iPhone, with the official SDK / Cocoa Touch?</p>
http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone/59159#591597Answer by millenomi for How to programmatically send SMS on the iPhone?millenomi2008-09-12T14:41:55Z2008-09-12T14:41:55Z<p>You can use a <code>sms:[target phone number]</code> URL to open the SMS application, but there are no indications on how to prefill a SMS body with text.</p>
http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone/59200#592004Answer by Adam Davis for How to programmatically send SMS on the iPhone?Adam Davis2008-09-12T15:00:54Z2008-09-12T15:00:54Z<p>If you could send an SMS within a program on the iPhone, you'll be able to write games that spam people in the background. I'm sure you really want to have spams from your friends, "Try out this new game! It roxxers my boxxers, and yours will be too! <a href="http://roxxersboxxers.com" rel="nofollow">http://roxxersboxxers.com</a>!!!! If you sign up now you'll get 3,200 RB points!!"</p>
<p>Apple surely has restrictions for automated (or even partially automated) SMS and dialing operations. (Imagine if the game instead dialed 911 at a particular time of day)</p>
<p>Your best bet is to setup an intermediate server on the internet that uses an online SMS sending service, and send the SMSs via that route if you need complete automation. (ie, your program on the iPhone sends a UDP packet to your server, which sends the real SMS)</p>
<p>-Adam</p>
http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone/1433609#1433609-1Answer by adam for How to programmatically send SMS on the iPhone?adam2009-09-16T15:09:18Z2009-09-16T15:09:18Z<p>Did anyone ever find a solution for this? I am aware of breaking out of the app using an sms: url specifier, however I really would like to pre-populate the contents of the SMS, similar to how is possible using mailto:</p>
<p>Thanks</p>
http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone/1802976#18029760Answer by ~rzr for How to programmatically send SMS on the iPhone?~rzr2009-11-26T10:48:39Z2009-11-26T10:48:39Z<p>Is there some official statement from apple about this feature ?</p>
<p>May this alternative help :</p>
<p><a href="http://code.google.com/p/iphone-delivery-report/" rel="nofollow">http://code.google.com/p/iphone-delivery-report/</a></p>