Get sent SMS delivery report - windows-phone

I would like to know if there is any API available to get the status of sent SMS programmatically that is SMS delivery report.
The code to send SMS is -
SmsComposeTask smsComposeTask = new SmsComposeTask();
smsComposeTask.To = destinationAddr;
smsComposeTask.Body = message;
smsComposeTask.Show();
Above code requires user interaction to send SMS. Once user sends SMS then I would like to get the delivery status of the SMS.
Thanks in advance.

You can't. The only way to do that is to read messages to check for delivery report and the API to read SMS is strictly available to OEMs for security reasons.

Related

Is there any application which is create a (fake) incoming SMS from a Google Calendar event?

That would be a great notification method. Since the Google not sending anymore SMS reminder, and the other portals doing that for charge; That would be nice to have a small application which is create a (fake) incoming SMS from the Google Calendar events (including all days event) in a certain (pre-set) time.
Any ideas?
Based from this documentation, Google still sends SMS reminder. However, the are only available for G Suite customers. Requests to set SMS reminders for other account types are ignored. If you are a G Suite customer, you may check this page on how to turn on SMS notifications.

BlueSnap Subscription Fail simulation

Is there any way to simulate bluesnap. what happens when a recurring payment fails, for example, if the user doesn't have money on the card in that moment?
Thank in advance :)
BlueSnap offers IPN (Instant Payment Notification) alerts for events such as declined CC charge for a subscription. This type of IPN is defined as "on demand" - which means you will need to register to receive it in the BlueSnap control panel.
https://support.bluesnap.com/docs/on-demand-ipns
Since the IPNs are messages sent over HTTP, you can choose to send them to your server, and configure a receiver for it there. Once the IPN reached your server it can be parsed by your receiver and you can choose what to do with it, for example:
send an automated email to your customer support or accounting department
send an email to the shopper
log the event in your system for later analysis.
IPNs can also be sent manually, thus simulating this event. For you specific case, the IPN for CC_CHARGE_FAILED can by opening a browser with a connection that can access your server, and putting the IPN in the address line. Your receiver will get the information and respond accordingly.
If you already received an IPN for an actual CC charge failure - use that IPN message as is. If you have not yet received such an IPN and in fact you're just starting out and building your own receiver, you should contact BlueSnap merchant support at merchants#bluesnap.com and they'll send you a sample.

Message not delivered with Orange SMS API

I am using PHP library on github "github.com/ismaeltoe/osms-php" to access Orange SMS API . no sms is delivered to any number in the same country.
This is the message i get after sending a message.Screenshot 1
This is the message i get when i check my sms balance Screenshot 2
The sms balance was 100 and it is now 88 as shown in the image but nothing was recieved.
Any help is highly appreciated
Ok, so, I was able to send SMS with Orange SMS API.
Firstly, You can not send SMS to phone number outside of the country's API you are using.
I've written a post about how to send SMS using Orange SMS API with more explications but in french.

How to sent a short message to a smart phone through internet?

I am in a project, from where I am facing a problem, because the user wants to sent a short message to his clients smart phone about their UserID and Password by using internet.
If you want to send email then its easily available but for text messages you have to get an API for sms sending. In many countries sms sending api's are available for free. A paid service is telephoney.
Assuming these phones are connected to a wireless provider, many phones can receive texts through email.
Here is AT&T's page on how to send these messages [Link]
There is also the issue of security though. I have no clue whether or not this would be a safe way to transmit someones ID and Password information.

WP7 Schedule to send sms at specific time?

I have read on methods to set alarm and reminder. Any suggestion how to set a reminder to send an sms automatically?
Thanks
It's not possible to send an sms automatically with windows phone, you always need user confirmation. You can set a reminder so that the user can send the sms manually.