mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-26 12:06:13 +00:00
Switched the entire short message notification system to leverage Symfony's Notifier component and its TexterInterface with SmsMessage. This update simplifies the implementation, removes custom short message handling, and aligns with Symfony's standardized approach.
13 lines
378 B
YAML
13 lines
378 B
YAML
framework:
|
|
notifier:
|
|
texter_transports:
|
|
ovhcloud: '%env(SHORT_MESSAGE_DSN)%'
|
|
channel_policy:
|
|
# use chat/slack, chat/telegram, sms/twilio or sms/nexmo
|
|
urgent: ['email']
|
|
high: ['email']
|
|
medium: ['email']
|
|
low: ['email']
|
|
admin_recipients:
|
|
- { email: admin@example.com }
|