Mohit
Mohit

Reputation:

sending pre populated sms from iPhone application

My requirements are like automatically sending a list to client through sms from my iPhone App. I did a little googling with no relevant result. all post are regarding opening sms editor using openUrl, but not about populating the content of sms using some text...

Upvotes: 0

Views: 4053

Answers (2)

rpetrich
rpetrich

Reputation: 32326

This is not possible in the public SDK. The closest you can get is to launch the SMS application with a number pre-entered (via the sms: URL scheme)

Upvotes: 1

slf
slf

Reputation: 22767

This is supported:

sms:1-408-555-1212

From the URL Scheme Reference

But it notes the following:

The URL string must not include any message text or other information.

Upvotes: 3

Related Questions