File tree Expand file tree Collapse file tree 4 files changed +50
-0
lines changed
src/Symfony/Component/Notifier/Bridge Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ Nexmo Notifier
3
3
4
4
Provides Nexmo integration for Symfony Notifier.
5
5
6
+ DSN example
7
+ -----------
8
+
9
+ ```
10
+ // .env file
11
+ NEXMO_DSN=nexmo://API_KEY:API_SECRET@default?from=FROM
12
+ ```
13
+
14
+ where:
15
+ - ` API_KEY ` is your Nexmo API key
16
+ - ` API_SECRET ` is your Nexmo API secret
17
+ - ` FROM ` is the sender
18
+
6
19
Resources
7
20
---------
8
21
Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ Slack Notifier
3
3
4
4
Provides Slack integration for Symfony Notifier.
5
5
6
+ DSN example
7
+ -----------
8
+
9
+ ```
10
+ // .env file
11
+ SLACK_DSN=slack://ACCESS_TOKEN@default?channel=CHANNEL
12
+ ```
13
+
14
+ where:
15
+ - ` ACCESS_TOKEN ` is your Slack access token
16
+ - ` CHANNEL ` is the Slack channel
17
+
6
18
Resources
7
19
---------
8
20
Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ Telegram Notifier
3
3
4
4
Provides Telegram integration for Symfony Notifier.
5
5
6
+ DSN example
7
+ -----------
8
+
9
+ ```
10
+ // .env file
11
+ TELEGRAM_DSN=telegram://TOKEN@default?channel=CHANNEL
12
+ ```
13
+
14
+ where:
15
+ - ` TOKEN ` is your Telegram token
16
+ - ` CHANNEL ` is the Slack channel
17
+
6
18
Resources
7
19
---------
8
20
Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ Twilio Notifier
3
3
4
4
Provides Twilio integration for Symfony Notifier.
5
5
6
+ DSN example
7
+ -----------
8
+
9
+ ```
10
+ // .env file
11
+ TWILIO_DSN=twilio://ACCOUNT_SID:AUTH_TOKEN@default?from=FROM
12
+ ```
13
+
14
+ where:
15
+ - ` ACCOUNT_SID ` is your Twilio account SID
16
+ - ` AUTH_TOKEN ` is your Twilio auth token
17
+ - ` FROM ` is the sender
18
+
6
19
Resources
7
20
---------
8
21
You can’t perform that action at this time.
0 commit comments