add email settings for quota alerting and user settings for quota alerting
This commit is contained in:
parent
8d6236113e
commit
9b7fb75eec
12
env.php.dist
12
env.php.dist
|
@ -41,6 +41,16 @@
|
|||
'subject' => 'Vous avez reçu un SMS',
|
||||
'template' => 'email/transfer-sms',
|
||||
],
|
||||
'EMAIL_QUOTA_LIMIT_CLOSE' => [
|
||||
'type' => 'email_quota_limit_close',
|
||||
'subject' => 'Vous avez presque atteint votre limite de SMS',
|
||||
'template' => 'email/quota-limit-close',
|
||||
],
|
||||
'EMAIL_QUOTA_LIMIT_REACHED' => [
|
||||
'type' => 'email_quota_limit_reached',
|
||||
'subject' => 'Vous avez atteint votre limite de SMS',
|
||||
'template' => 'email/quota-limit-reached',
|
||||
],
|
||||
|
||||
//Phone messages types
|
||||
'QUEUE_ID_PHONE_PREFIX' => ftok(__FILE__, 'p'),
|
||||
|
@ -70,6 +80,8 @@
|
|||
'default_phone_country' => 'fr',
|
||||
'authorized_phone_country' => 'fr,be,ca',
|
||||
'mms' => 1,
|
||||
'alert_quota_limit_reached' => 1,
|
||||
'alert_quota_limit_close' => 0.9,
|
||||
],
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in New Issue