</> Developers Guide to Funraisin

SMS Messaging

Technology

All Funraisin sites support the ability to send out SMS messages similar to Email support, via direct API connections to the following providers

Twilio SMS

Burst SMS (AU)

Burst SMS (NZ)

Message Types

Sending SMS messages is currently limited to use with Triggers though it is possible to programmatically send SMS using Custom Code.

There is currently no support for the ability to un-subscribe from SMS messages.

Programmatically Sending SMS

Sending an SMS message via PHP is very straight forward to do, all you need to do is first load the SMS model and then there is a function that allows you to send a message which will then interact with whatever SMS provider the platform is set to.

The following code wil send a single SMS message to the number provided.

$CI =& get_instance();
$CI->load->model("Sms_model");
$CI->Sms_model->sendsmsmessage($number,$message);