I am generating XML payload for my Windows Phone 8.1 app using PHP,like this:
<toast launch=''>
<visual lang='en-US'>
<binding template='ToastText02'>
<text id='1'>".Input::get('your_msg')."</text>
</binding>
</visual>
</toast>
But my message is not getting displayed when toast notification pops up,notification just reads:
"<App name>: New notification"
Also,it is to be noted that I haven't used any toastTemplate
code in my app.Any idea what's going wrong here?