diff --git a/config/backup.php b/config/backup.php index 4484877b1f..10ebdde038 100644 --- a/config/backup.php +++ b/config/backup.php @@ -137,6 +137,11 @@ return [ 'mail' => [ 'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS', null), + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], ], 'slack' => [ @@ -152,6 +157,20 @@ return [ 'icon' => null, ], + + 'discord' => [ + 'webhook_url' => '', + + /* + * If this is an empty string, the name field on the webhook will be used. + */ + 'username' => '', + + /* + * If this is an empty string, the avatar on the webhook will be used. + */ + 'avatar_url' => '', + ], ], /*