I recently installed PHPMailer and right off the bat I am getting this error:
Uncaught Error: Class PHPMailer not found in /var/www/mydomain/send-email.php
I originally included the PHPMailer code like this:
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
When that did not work, I tried this because this is where the files for PHPMailer are:
include('/usr/share/php/libphp-phpmailer/src/PHPMailer.php');
include('/usr/share/php/libphp-phpmailer/src/Exception.php');
Same error, what am I doing wrong here?