-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.deployment.php
25 lines (24 loc) · 1.05 KB
/
init.deployment.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
<?php
$loader = require_once __DIR__ . '/vendor/autoload.php';
$loader->add('FabMailerAdapter', __DIR__ . '/src/');
$mailQueue = [
[
'connection' => ['host' => 'smtp.live.com', 'port' => '587', 'user' => '[email protected]', 'pass' => '', 'encryption' => 'tls'],
'emails' => [
['from' => '[email protected]', 'to' => '[email protected]', 'message' => 'Hotmail Email Content']
]
],
[
'connection' => ['host' => '', 'port' => '', 'user' => '', 'pass' => ''],
'emails' => [
['from' => '[email protected]', 'to' => '[email protected]', 'message' => 'Local Email Content', 'encryption' => '']
]
],
[
'connection' => ['host' => 'smtp.gmail.com', 'port' => '465', 'user' => '[email protected]', 'pass' => '', 'encryption' => 'tls'],
'emails' => [
['from' => '[email protected]', 'to' => '[email protected]', 'message' => 'gMail Email Content'],
['from' => '[email protected]', 'to' => '[email protected]', 'message' => 'gMail Email Content 2']
]
]
];