-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinboxes.php
186 lines (144 loc) · 4.44 KB
/
inboxes.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
use Mailtrap\Config;
use Mailtrap\DTO\Request\Inbox;
use Mailtrap\Helper\ResponseHelper;
use Mailtrap\MailtrapSandboxClient;
require __DIR__ . '/../vendor/autoload.php';
$accountId = getenv('MAILTRAP_ACCOUNT_ID');
$config = new Config(getenv('MAILTRAP_API_KEY')); #your API token from here https://mailtrap.io/api-tokens
$sandboxInboxes = (new MailtrapSandboxClient($config))->inboxes($accountId); #required parameter is accountId
/**
* Get a list of inboxes.
*
* GET https://mailtrap.io/api/accounts/{account_id}/inboxes
*/
try {
$response = $sandboxInboxes->getList();
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Create an inbox
*
* POST https://mailtrap.io/api/accounts/{account_id}/projects/{project_id}/inboxes
*/
try {
$projectId = getenv('MAILTRAP_PROJECT_ID');
$inboxName = 'First inbox';
$response = $sandboxInboxes->create($projectId, $inboxName);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Get inbox attributes
*
* GET https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->getInboxAttributes($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Delete an inbox
*
* DELETE https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->delete($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Reset email address
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}/reset_email_username
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->resetEmailAddress($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Enable/Disable email address
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}/toggle_email_username
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->toggleEmailAddress($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Reset credentials
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}/reset_credentials
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->resetSmtpCredentials($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Mark as read
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}/all_read
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->markAsRead($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Clean inbox
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}/clean
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$response = $sandboxInboxes->clean($inboxId);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
/**
* Update an inbox
*
* PATCH https://mailtrap.io/api/accounts/{account_id}/inboxes/{inbox_id}
*/
try {
$inboxId = getenv('MAILTRAP_INBOX_ID');
$newInboxName = 'New inbox name';
$newEmailUsername = 'new-email-username';
$response = $sandboxInboxes->update(
$inboxId,
new Inbox($newInboxName, $newEmailUsername)
);
// print the response body (array)
var_dump(ResponseHelper::toArray($response));
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}