Instructions To Use:
1. Unzip the files and upload the entire folder contents, including PHPMailer libraries.
2. Before you configure the script, make sure to create the mail account in your hosting control panel.
3. Just edit 5 lines (shown below) in "mail-config.php" and open the index.php to test on the server.


Edit "mail-config.php" form ~ line #15 to line #19
-----------------------------------------------------
$mail->Host = "mail.domain.com"; // Mail Server Name
$mail->Username = 'feedback@domain.com'; // Email Authentication
$mail->Password = '1234567890'; // Email Password
$mail->setFrom('feedback@domain.com', 'Web Form'); // From Email
$mail->addReplyTo('donotreply@domain.com'); // Reply Email
-----------------------------------------------------