Creating a message in 'Messaging'

I want the message from my application to appear in the Windows Phone Messaging Center without having to send it as a text message. Can this be done?

The application does not have to be distributed through the Marketplace, so any private apis will also do.

+4
source share
2 answers

This is not possible during the WP 7.X or WP8 SDK.
I solved a similar problem by creating an HTTP Post Request with json (device information, message, etc.) as a parameter. Then they sent it to my own server, which did the work instead of the phone. Hope this helps you.

+4
source

This is not possible at this time, since there is no API for this. You can pre-populate SMS with SmsComposeTask , but this is the only interaction you get with this hub.

+2
source

All Articles