EMAIL AND WHATSAPP SETUP
========================

1. WhatsApp is already set to: 8801779899535
   The form opens WhatsApp with the enquiry filled in. The visitor taps Send.

2. Email recipient is already set to: khanmdbabu319@gmail.com

3. Default email mode is PHP mail.
   If email does not arrive, use SMTP in includes/config.php.

Recommended cPanel SMTP example:

const MAIL_DELIVERY_MODE = 'smtp';
const SMTP_HOST = 'mail.yourdomain.com';
const SMTP_PORT = 465;
const SMTP_ENCRYPTION = 'ssl';
const SMTP_USERNAME = 'website@yourdomain.com';
const SMTP_PASSWORD = 'YOUR_MAILBOX_PASSWORD';

Use cPanel > Email Accounts > Connect Devices to find the exact values.

4. Test status can be checked in:
   storage/email-delivery.log

5. Give the storage folder permission 775 if enquiries are not saved.
