HOW TO FINISH SETTING UP PHPMAILER
===================================

This folder is missing one file: PHPMailer.php (the main class — about
192KB / 5,600 lines). It wasn't included because it's too large to copy
reliably without risking a corrupted file — better to get it straight
from the source. Two ways to add it, pick whichever is easier:

OPTION A — Download it yourself (no server access needed)
-----------------------------------------------------------
1. Open this URL in your browser:
   https://raw.githubusercontent.com/PHPMailer/PHPMailer/master/src/PHPMailer.php
2. Save the page (Ctrl+S, or your browser's "Save as" / long-press menu)
   as a plain text file named exactly:  PHPMailer.php
3. Upload that file into this exact folder on your server:
   vendor/phpmailer/phpmailer/src/PHPMailer.php
   (the same folder this README is in)
4. Delete this README file (optional, just tidy-up).

That's it — the app automatically detects and uses PHPMailer the next
time it sends an email. No other changes needed.

OPTION B — Use Composer instead (if your host gives you SSH/terminal access)
-------------------------------------------------------------------------------
From the project's root folder, run:
   composer require phpmailer/phpmailer

This will replace this whole vendor/ folder with Composer's own copy —
that's expected and fine, nothing else in the app needs to change either
way.

UNTIL YOU ADD IT
-----------------
No problem — the app keeps working. It automatically falls back to its
own built-in SMTP client (includes/SmtpMailer.php) whenever PHPMailer.php
isn't present, so email sending isn't broken in the meantime.
