aboutsummaryrefslogtreecommitdiff
path: root/config.php.example
blob: 7069536e6fb2945cae65731d8aa1d757235e48d8 (plain) (blame)
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
<?php
// Example config.php
/* Database credentials. Assuming you are running MySQL
server with default setting (user 'root' with no password) */
define('DB_SERVER', 'hostname');
define('DB_USERNAME', 'username');
define('DB_PASSWORD', 'password');
define('DB_NAME', 'dbname');

define('MAIL_SERVER', 'mail.example.com');
define('MAIL_PORT', 587);
define('MAIL_USER', 'user');
define('MAIL_PASSWORD', 'password');
define('MAIL_FROM', 'system@example.com');
 
/* Attempt to connect to MySQL database */
$link = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME);
 
// Check connection
if($link === false){
    die("ERROR: Could not connect. " . mysqli_connect_error());
}

require("/usr/share/php/libphp-phpmailer/autoload.php");
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
$mailer = new PHPMailer();
$mailer->isSMTP();
$mailer->SMTPDebug = SMTP::DEBUG_SERVER;
$mailer->Host = MAIL_SERVER;
$mailer->Port = MAIL_PORT;
$mailer->SMTPAuth = true;
$mailer->Username = MAIL_USER;
$mailer->Password = MAIL_PASSWORD;
$mailer->setFrom(MAIL_FROM);
$mailer->isHTML(false);

?>