Skip to content

Commit e09bc66

Browse files
committed
add sendy config file values
1 parent 0dc2b92 commit e09bc66

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

config/sendy.php

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
<?php
22

3-
// config for Coderflex/LaravelSendy
43
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Sendy Installation URL
7+
|--------------------------------------------------------------------------
8+
|
9+
| This URL is used to connect to your Sendy installation. It should
10+
| point to the root of your Sendy installation. For example:
11+
| https://your-sendy-installation.com
12+
*/
13+
'sendy_installation_url' => env('SENDY_INSTALLATION_URL', 'https://your-sendy-installation.com'),
514

15+
/*
16+
|--------------------------------------------------------------------------
17+
| Sendy API Key
18+
|--------------------------------------------------------------------------
19+
|
20+
| This key is used to authenticate your application with the Sendy
21+
| installation. You can find your API key in the Sendy settings.
22+
| Make sure to keep this key secure and do not share it with anyone.
23+
| It is recommended to use environment variables to store sensitive
24+
| information like API keys. You can set the SENDY_API_KEY
25+
*/
26+
'sendy_api_key' => env('SENDY_API_KEY', 'your-sendy-api-key'),
627
];

0 commit comments

Comments
 (0)