This plugin works with e107's notification system and adds the possibility to send SMS to your customers via seven.
- An API key from seven - can be created in your developer dashboard
- e107 - tested with v2.3.2
- Download the latest release
- Extract the archive to
/path/to/e107/e107_plugins/
- Head to
Manage->Plugin Manager->Not installed
in your administration panel and enable theseven
plugin - Go to
Plugin Manager->Installed
, open the settings page and enter your API key
You can start by going to the Test page
and compose an SMS to see if it all works.
You can programmatically send SMS by triggering the e107 notification system for SMS dispatch.
e107::getEvent()->trigger(
'system_send_sms',
[
'message' => 'Your message',
'to' => '+1-234-567-890',
]);
Need help? Feel free to contact us.