Update Notifier bridge DSN in readme

This commit is contained in:
Jérémy Romey 2020-08-27 16:23:22 +02:00
parent 80e38d27ee
commit a404d056b3
No known key found for this signature in database
GPG Key ID: 4DC57D63BA79D810
4 changed files with 50 additions and 0 deletions

View File

@ -3,6 +3,19 @@ Nexmo Notifier
Provides Nexmo integration for Symfony Notifier.
DSN example
-----------
```
// .env file
NEXMO_DSN=nexmo://API_KEY:API_SECRET@default?from=FROM
```
where:
- `API_KEY` is your Nexmo API key
- `API_SECRET` is your Nexmo API secret
- `FROM` is the sender
Resources
---------

View File

@ -3,6 +3,18 @@ Slack Notifier
Provides Slack integration for Symfony Notifier.
DSN example
-----------
```
// .env file
SLACK_DSN=slack://ACCESS_TOKEN@default?channel=CHANNEL
```
where:
- `ACCESS_TOKEN` is your Slack access token
- `CHANNEL` is the Slack channel
Resources
---------

View File

@ -3,6 +3,18 @@ Telegram Notifier
Provides Telegram integration for Symfony Notifier.
DSN example
-----------
```
// .env file
TELEGRAM_DSN=telegram://TOKEN@default?channel=CHANNEL
```
where:
- `TOKEN` is your Telegram token
- `CHANNEL` is the Slack channel
Resources
---------

View File

@ -3,6 +3,19 @@ Twilio Notifier
Provides Twilio integration for Symfony Notifier.
DSN example
-----------
```
// .env file
TWILIO_DSN=twilio://ACCOUNT_SID:AUTH_TOKEN@default?from=FROM
```
where:
- `ACCOUNT_SID` is your Twilio account SID
- `AUTH_TOKEN` is your Twilio auth token
- `FROM` is the sender
Resources
---------