| Server IP : 103.243.232.44 / Your IP : 216.73.216.250 Web Server : LiteSpeed System : Linux server17213-10344.hostycare.online 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64 User : iamakash ( 1400) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/iamakash/public_html/ftnconsortium.com/ |
Upload File : |
<?php
/**
* Zoho SMTP configuration for FTN Consortium contact form.
* ---------------------------------------------------------
* IMPORTANT:
* 1. SMTP_PASS must be a Zoho **App Password**, NOT your normal mailbox login.
* Generate one at: Zoho Mail → My Account → Security → App Passwords.
* 2. Pick the host that matches the datacenter your Zoho account lives in:
* - India (zoho.in / signed up in India): smtp.zoho.in
* - Global (zoho.com): smtp.zoho.com
* If mail fails to send, switch SMTP_HOST to the other one.
* 3. Keep this file private — do not expose it publicly.
*/
return [
// Master switch: set false to temporarily stop ALL contact-form emails
// (enquiries are still saved to the database).
'enabled' => false,
'host' => 'smtp.zoho.com', // global datacenter (zoho.com)
'port' => 465, // 465 = SSL, 587 = STARTTLS
'encryption' => 'ssl', // 'ssl' for 465, 'tls' for 587
'username' => 'ftn-support@ftnconsortium.com', // full Zoho mailbox address
'password' => 'GNg5wEHiv29z',
// Addresses shown to recipients
'from_email' => 'ftn-support@ftnconsortium.com',
'from_name' => 'FTN Consortium',
'notify_to' => 'ftn-support@ftnconsortium.com', // where YOU receive enquiries
// Set true to write SMTP debug output to mail-error.log when sending fails
'debug' => false,
];