mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-07-01 12:56:17 +00:00
handle sending and receiving multipart sms messages > 160 chars
This commit is contained in:
@ -228,6 +228,7 @@ class EnvayaSMS_Action_SendStatus extends EnvayaSMS_Action
|
||||
{
|
||||
public $status; // EnvayaSMS::STATUS_* values
|
||||
public $id; // server ID previously used in EnvayaSMS_OutgoingMessage
|
||||
public $error; // textual descrption of error (if applicable)
|
||||
|
||||
function __construct($request)
|
||||
{
|
||||
@ -235,5 +236,6 @@ class EnvayaSMS_Action_SendStatus extends EnvayaSMS_Action
|
||||
$this->type = EnvayaSMS::ACTION_SEND_STATUS;
|
||||
$this->status = $_POST['status'];
|
||||
$this->id = $_POST['id'];
|
||||
$this->error = $_POST['error'];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user