https://github.com/symfony/ring-central-notifier
Symfony RingCentral Notifier Bridge
https://github.com/symfony/ring-central-notifier
component notifier php ring-central symfony symfony-component
Last synced: 6 months ago
JSON representation
Symfony RingCentral Notifier Bridge
- Host: GitHub
- URL: https://github.com/symfony/ring-central-notifier
- Owner: symfony
- License: mit
- Created: 2022-12-02T16:08:57.000Z (over 3 years ago)
- Default Branch: 8.1
- Last Pushed: 2026-01-05T09:35:29.000Z (6 months ago)
- Last Synced: 2026-01-22T09:05:59.922Z (6 months ago)
- Topics: component, notifier, php, ring-central, symfony, symfony-component
- Language: PHP
- Homepage: https://symfony.com/notifier
- Size: 44.9 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Ring Central Notifier
=====================
Provides [Ring Central](https://www.ringcentral.com) integration for Symfony Notifier.
DSN example
-----------
```
RINGCENTRAL_DSN=ringcentral://API_TOKEN@default?from=FROM
```
where:
- `API_TOKEN` is your Ring Central OAuth 2 token
- `FROM` is your sender
Adding Options to a Message
---------------------------
With a Ring Central Message, you can use the `RingCentralOptions` class to add
[message options](https://developers.ringcentral.com/api-reference/SMS/createSMSMessage).
```php
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Bridge\RingCentral\RingCentralOptions;
$sms = new SmsMessage('+1411111111', 'My message');
$options = (new RingCentralOptions())
->country(
'test_country_id',
'country_iso_code',
'country_name',
'country_uri',
'country_calling_code'
)
// ...
;
// Add the custom options to the sms message and send the message
$sms->options($options);
$texter->send($sms);
```
Resources
---------
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)