Adobe Muse Web Form Smtp Authentication

Okay, so the key is to replace the above line with (after you have downloaded PHPMailer 5.2.8 and uploaded it to the same folder that has your php script in it.

require 'PHPMailer-5.2.8/PHPMailerAutoload.php';  
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = 'removed'; // update this line
$mail->SMTPAuth = true;
$mail->Username = 'removed'; // update this line
$mail->Password = 'removed'; // update this line
//$mail->SMTPSecure = 'tls';

$mail->From = 'test@example.com'; // put your email address here
$mail->FromName = 'test'; // put your email address/name here
$mail->addAddress($to);
$mail->isHTML(true);

$mail->Subject = $subject;
$mail->Body = $message;

$sent = $mail->send();