SMS service
This commit is contained in:
@@ -35,4 +35,21 @@
|
||||
],
|
||||
],
|
||||
|
||||
'sms' => [
|
||||
'providers' => [
|
||||
'smsapi_si' => [
|
||||
// Base URL for SMS API provider
|
||||
'base_url' => env('SMSAPI_SI_BASE_URL', 'https://www.smsapi.si'),
|
||||
// Relative endpoint for sending SMS messages
|
||||
'send_endpoint' => env('SMSAPI_SI_SEND_ENDPOINT', '/poslji-sms'),
|
||||
// Endpoint for checking credit balance
|
||||
'credits_endpoint' => env('SMSAPI_SI_CREDITS_ENDPOINT', '/preveri-stanje-kreditov'),
|
||||
// Endpoint for fetching price quotes
|
||||
'price_endpoint' => env('SMSAPI_SI_PRICE_ENDPOINT', '/dobi-ceno'),
|
||||
// HTTP client timeout in seconds
|
||||
'timeout' => (int) env('SMSAPI_SI_TIMEOUT', 10),
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user