File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 11<?php
22
3- // config for Coderflex/LaravelSendy
43return [
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];
You can’t perform that action at this time.
0 commit comments