-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
29 lines (24 loc) · 1011 Bytes
/
config.php
File metadata and controls
29 lines (24 loc) · 1011 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
25
26
27
28
29
<?php
// SMTP Configuration for Quartz Clinique Partnership Website
// This file contains your email server settings
// For security, this file should NOT be accessible from web
// Consider moving it outside public_html or use .htaccess protection
return [
// SMTP Server Settings
'smtp_host' => 'ms7.guzel.net.tr',
'smtp_port' => 465,
'smtp_username' => 'info@quartz.com.tr',
'smtp_password' => 'JSU*BEC74yDrEN', // Replace with your actual password
'smtp_encryption' => 'ssl', // ssl or tls
// Email Settings
'from_email' => 'info@quartz.com.tr',
'from_name' => 'Quartz Clinique - Partnership Program',
'reply_to' => 'info@quartz.com.tr',
// Contact Form Settings
'contact_email' => 'info@quartz.com.tr', // Where contact form emails go
'bcc_email' => '', // Optional BCC email
// Debug Settings
'debug_mode' => false, // Set to false in production
'log_errors' => true,
];
?>