-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
44 lines (39 loc) · 877 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
// Copy this file to config.php, edit and uncomment the constants below
/*
define('GATEWAY_TYPE', 'Clickatell');
define('GATEWAY_PARAMS', [
'apiKey' => 'CHANGEME',
// 'from' => 'CHANGEME', // Supported only for 2-way messaging
]);
*/
/*
define('GATEWAY_TYPE', 'Clockwork');
define('GATEWAY_PARAMS', [
'key' => 'CHANGEME',
'from' => 'CHANGEME',
]);
*/
/*
define('GATEWAY_TYPE', 'Budgetsms');
define('GATEWAY_PARAMS', [
'username' => 'CHANGEME',
'userid' => 'CHANGEME',
'handle' => 'CHANGEME',
'from' => 'CHANGEME',
]);
*/
/*
define('GATEWAY_TYPE', 'Infobip');
define('GATEWAY_PARAMS', [
'username' => 'CHANGEME',
'password' => 'CHANGEME',
'from' => 'CHANGEME',
]);
*/
define('GATEWAY_TYPE', 'LabsMobile');
define('GATEWAY_PARAMS', [
'username' => 'myUsername',
'password' => 'myToken',
'sender' => 'Zabbix',
]);