-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestsettings-dist.php
More file actions
37 lines (31 loc) · 961 Bytes
/
testsettings-dist.php
File metadata and controls
37 lines (31 loc) · 961 Bytes
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.
*/
/**
* The initial root URL for API calls
*/
$baseurl = 'https://www.smartmessages.net/api/';
/**
* The username you use to log into your Smartmessages account
*/
$user = 'user@example.com';
/**
* The password you use to log into your Smartmessages account
*/
$pass = 'password';
/**
* The API key that appears on the account page in your Smartmessages account
*/
$apikey = '0123456789abcdefghijkl';
/**
* 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 = '';
/**
* 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;