-
Notifications
You must be signed in to change notification settings - Fork 1
/
testsettings-dist.php
37 lines (31 loc) · 1.07 KB
/
testsettings-dist.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
<?php
/**
* Copy this file and rename it to 'testsettings.php', change the values to match your Smartmessages account,
* and it will be picked up by the example script.
*/
/**
* @var string $baseurl The initial root location of all API calls
*/
$baseurl = 'https://www.smartmessages.net/api/';
/**
* @var string $user the user name you use to log into your Smartmessages account
*/
$user = '[email protected]';
/**
* @var string $pass the password you use to log into your Smartmessages account
*/
$pass = 'password';
/**
* @var string $apikey The API key that appears on the account page in your Smartmessages account
*/
$apikey = '0123456789abcdefghijkl';
/**
* @var string $endpoint The access location that the login call tells you to use for subsequent requests
* Will usually be the same as the initial access URL, but may change in future, so please use it
*/
$endpoint = '';
/**
* @var integer $testlistid A list id to send mailshots to, as found on the contacts page
* of your Smartmessages account, or in response to the gettestlist API call
*/
$testlistid = 0;