Ivan Byelko
Ivan Byelko

Reputation: 252

How to get sms sent notify?

In windows phone app i use SmsComposeTask to send sms:

            SmsComposeTask sms = new SmsComposeTask()
            {
                Body = body,
                To = to
            };
            sms.Show();

I want to know if user sent sms or push back button. How i can get this notify?

Upvotes: 0

Views: 275

Answers (1)

ZombieSheep
ZombieSheep

Reputation: 29953

You can't I'm afraid. You have to "set it and forget it"

Upvotes: 1

Related Questions