Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seven-io/elgg
Send SMS from within elgg
https://github.com/seven-io/elgg
elgg elgg-plugin sms
Last synced: 1 day ago
JSON representation
Send SMS from within elgg
- Host: GitHub
- URL: https://github.com/seven-io/elgg
- Owner: seven-io
- Created: 2021-05-04T11:21:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T13:16:32.000Z (about 1 year ago)
- Last Synced: 2024-11-10T11:45:42.301Z (about 2 months ago)
- Topics: elgg, elgg-plugin, sms
- Language: PHP
- Homepage: https://www.seven.io
- Size: 183 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
seven SMS provider
===================
![Elgg Logo](https://img.shields.io/badge/Elgg-2.1.x-orange.svg?style=flat-square)## Features
* Send SMS using seven API
### Usage
This plugin provides a handler for SMS notification delivery for the `notifications_sms` plugin.
It also supports sending SMS messages programmatically:
```php
notify_user($member->guid, 0, $subject, $message, [
'action' => 'something',
'object' => $entity,
'sms' => $sms, // Custom text of the SMS notification, falls back to 'summary' and then to 'subject'
'summary' => $summary,
'url' => $entity->getURL(),
], ['email', 'site', 'sms']);
``````php
elgg_send_sms('+4987654210', 'HI2U!');
```#### Support
Need help? Feel free to [contact us](https://www.seven.io/en/company/contact/).