I am having this same problem. I downloaded the zip file again, extracted, copied to server. Error says:
Fatal error: Class 'SMTP' not found in C:\HostingSpaces\SchoolSystems, LLC\myschoolsystems.com\wwwroot\include_files\PHPMailer\PHPMailer_v5.5.23\class.phpmailer.php on line 1520
my code looks like:
ini_set ("include_path", "include_files/PHPMailer/PHPMailer_v5.5.23/");
require ("PHPMailerAutoload.php");
$mailer = new PHPMailer();
$mailer -> IsSMTP();
$mailer -> Host = 'smtp.mandrillapp.com';
$mailer -> SMTPAuth = true;
$mailer -> Username = 'myemail@mydomain.com';
$mailer -> Password = 'mypassword';
$mailer -> SMTPSecure = 'tls';
$mailer -> Port = 587;
$mailer -> IsHTML(true);
in my folder I have these files, no subfolders:
class.phpmailer.php
class.phpmaileroauth.php
class.phpmaileroauthgoogle.php
class.pop3.php
class.smtp.php
composer.json
composer.lock
get_auth_token.php
LICENSE
PHPMailerAutoload.php
VERSION