HEX
Server: Apache
System: Linux p3plzcpnl504659.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: iw4ko36aaxmu (10794665)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /home/iw4ko36aaxmu/public_html/feedback/send_feedback.php
<?php
$send_to="vivekvinayak87@gmail.com";
$to = $send_to;
$subject = 'Client Testimonial';
$feedback=$_POST['feed-back'];
$feedscore=$_POST['feed-score'];
$msg=nl2br($_POST['message']);

$from="info@chandleeandsonsconstruction.com";
if(!empty($msg)) {
	

$message = "
<img src='http://www.chandleeandsonsconstruction.com/feedback/$feedscore.png'> $feedback
<br>
<br>
$msg
";

// Always set content-type when sending HTML email
 

$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: ".$from."\r\n";
$headers .= "Reply-to: ".$from."\r\n";


//$headers .= 'Cc: myboss@example.com' . "\r\n";

mail($to,$subject,$message,$headers);
mail('ddenisehughes@gmail.com',$subject,$message,$headers);

}
?>