mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Added PHPMailer library, send invoice email now works, badge colors change based off invoice status add client now adds a location, contact and domain.
This commit is contained in:
15
config.php
15
config.php
@@ -1,11 +1,15 @@
|
||||
<?php
|
||||
|
||||
//DB Settings
|
||||
|
||||
$dbhost = "localhost";
|
||||
$dbusername = "root";
|
||||
$dbpassword = "password";
|
||||
$database = "pittpc";
|
||||
|
||||
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database);
|
||||
|
||||
//General Settings
|
||||
|
||||
$config_date_format = "Y-m-d";
|
||||
$config_time_format = "h:ia";
|
||||
$config_no_records = "There is nothing here!";
|
||||
@@ -18,9 +22,18 @@
|
||||
$config_company_state = "";
|
||||
$config_company_zip = "";
|
||||
|
||||
//Mail Settings (Host must require TLS Support)
|
||||
$config_smtp_host = "";
|
||||
$config_smtp_username = "";
|
||||
$config_smtp_password = "";
|
||||
$config_smtp_port = 587;
|
||||
$config_mail_from_email = "";
|
||||
$config_mail_from_name = "";
|
||||
|
||||
$_SESSION['alert_message'] = '';
|
||||
$_SESSION['alert_type'] = "warning";
|
||||
|
||||
|
||||
$states_array = array(
|
||||
'AL'=>'Alabama',
|
||||
'AK'=>'Alaska',
|
||||
|
||||
Reference in New Issue
Block a user