-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmail-config.example.php
More file actions
24 lines (23 loc) · 871 Bytes
/
Copy pathmail-config.example.php
File metadata and controls
24 lines (23 loc) · 871 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
<?php
/**
* mail-config.example.php — committed template.
*
* Real config lives one directory above the web root, at
* repositories/educational_tools/config/mail-config.php — entirely
* outside this git tree (local FS layout design's public_html/config
* split), not merely gitignored-in-place. contact.php requires it via
* __DIR__ . '/../config/mail-config.php'.
*
* Same underlying mailbox as ebono_au_site's own mail-config.php (one
* organisation, one inbox) — copy that file's real values here rather
* than provisioning a second mailbox.
*/
return [
'host' => 'smtp.hostinger.com',
'port' => 465,
'encryption' => 'smtps', // matches PHPMailer::ENCRYPTION_SMTPS
'username' => 'REPLACE_ME',
'password' => 'REPLACE_ME',
'from_email' => 'info@ebono.au',
'from_name' => 'ArtIE · The Ebono Institute',
];