Guest
2007-05-24T09:11:45Z
How can I receiving delivery reports for message that I send using your gateway. I am writing my code in PHP.
Support
2007-05-24T09:12:32Z
The following PHP script will receive the status report information from our SMS Gateway.

<?php

// Extract message details
$msgid = $_POST['msgid'];
$status = $_POST['status'];
$toaddr = $_POST['toaddr'];

?>

You must host this script on a public accessible web site and configure you account to forward delivery reports to your PHP page as follows:
1) Login to your account at: https://www.intellisoftware.co.uk/account/ 
2) Goto Preference -> Forwarding
3) Select 'Enable status reports forwarding'
4) Select 'Forwarding type' as 'HTTP'
5) Enter the address of your PHP page
6) Click 'Save Changes'
Guest
2010-08-31T11:41:28Z
Hi,

I'm currently implimenting this feature as well, however I've noticed that when the $status value is posted back that it is a number.

If possible can you post the status codes so I can also add a script that will convert the number into a text value (4=Delivered etc)
Guest