Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can compose messages without using launcher and chooser in wp7?

I use SmsComposeTask for composing sms in wp7. but in my application i want to send messages directly without using SmsComposeTask so please tell me how can i send sms without using SmsComposeTask?

like image 814
Nirav Avatar asked Oct 24 '22 03:10

Nirav


2 Answers

You can't. That's what the SmsComposeTask is for. The SmsComposeTask takes the action out of developers hands and ensures that the user gets to confirm whether or not an SMS gets sent and who to for security reasons. I'm sure user's would soon get annoyed if apps were sending messages out and using up their credit without their permission :)

like image 52
Derek Lakin Avatar answered Mar 04 '23 11:03

Derek Lakin


Using the functionality of the phone directly you can't.
You could, however use a web based solution for sending messages. i.e. your app calls a web service which sends the message.

like image 41
Matt Lacey Avatar answered Mar 04 '23 11:03

Matt Lacey