sms77 / krayin
Requires
- php: ^7.4|^8.0
- ext-json: *
- krayin/laravel-crm: ^1.0
This package is auto-updated.
Last update: 2024-11-04 16:11:12 UTC
README
Adds the functionality to send SMS via seven.
Prerequisites
- An API Key from seven
- Krayin CRM - tested with v1.2.x
Installation
- Register the package as service provider by appending an entry in config/app.php.
<?php return [ // ... 'providers' => [ // ... Seven\Krayin\Providers\SevenServiceProvider::class, ], // ... ];
- Add the package namespace as PSR-4 key in composer.json file for autoloading.
{ "autoload": { "psr-4": { "Seven\\Krayin\\": "packages/Seven/Krayin/src" } } }
- Execute these commands to clear the cache and migrate the database:
php artisan cache:clear
php artisan migrate
Setup
Before you can start sending SMS you will need to submit your seven API key. This can be in two ways:
Configuration via administration panel
- Navigate to Dashboard -> Configuration -> seven in your Krayin admin panel.
- Enter your API Key and submit by clicking on Save.
Setting an environment variable
- Define your seven API key in the environment by adding an entry to the .env file in the root of your project.
SEVEN_API_KEY=YourSuperSecretApiKeyFromSeven
- Add the following lines to config/services.php:
return [ // ... 'seven' => [ 'api_key' => env('SEVEN_API_KEY'), // must match the key from .env file added in the previous step ], ];
Clear the cache and cache the configuration by executing
php artisan cache:clear && php artisan config:cache
.
Please note: Setting the API key via configuration takes precedence over defining it as an environment variable. Also, the value from the environment won't get shown in the configuration form due to technical limitations.
Usage
Send SMS to Person
Go to Contacts -> Persons
and click on the seven icon in the actions column.
Send SMS to Organization
Go to Contacts -> Organizations
and click on the seven icon in the actions column.
You can use property placeholders which resolve to the person's property as long as it is defined, e.g. {{name}} resolves to the person's name.
Support
Need help? Feel free to contact us.