/home/techb158/workloadmatch.com/workloadmatch.com
NameSizeModeActions
.well-known/-0755rm
api/-0755rm
assets/-0755rm
BackUp/-0755rm
bootstrap/-0755rm
bower_components/-0755rm
cgi-bin/-0755rm
dist/-0755rm
img/-0755rm
includes/-0755rm
js/-0755rm
layout/-0755rm
Manager/-0755rm
New Load Match/-0755rm
plugins/-0755rm
styles/-0755rm
Teacher/-0755rm
vendor/-0755rm
.htaccess85040644editdlrm
.htaccess-bak85040644editdlrm
.user.ini5880644editdlrm
admin.php331100644editdlrm
authorized.php22240644editdlrm
auto_email_notification.php50030644editdlrm
error.php4510644editdlrm
error_log247637130644editdlrm
footer.php1840644editdlrm
forgetpassword.php35090644editdlrm
form-newsletter.php6580644editdlrm
form-process.php30870644editdlrm
getlang.php2830644editdlrm
home.php167780644editdlrm
index.php191030644editdlrm
myaccounts.php33190644editdlrm
php.ini6370644editdlrm
postPersons.php17570644editdlrm
reset.php35910644editdlrm
Signup.php220160644editdlrm
workloadmatch-deployment.zip316173000644editdlrm
workloadmatch.com.zip326943790644editdlrm
Edit: /home/techb158/workloadmatch.com/workloadmatch.com/form-process.php (3087B)
success){ if (empty($_POST["name"])) { $errorMSG = "Name is required "; } else { $name = $_POST["name"]; } // EMAIL if (empty($_POST["email"])) { $errorMSG .= "Email is required "; } else { $email = $_POST["email"]; } // MSG SUBJECT if (empty($_POST["msg_subject"])) { $errorMSG .= "Subject is required "; } else { $msg_subject = $_POST["msg_subject"]; } // Phone Number if (empty($_POST["phone_number"])) { $errorMSG .= "Number is required "; } else { $phone_number = $_POST["phone_number"]; } // MESSAGE if (empty($_POST["message"])) { $errorMSG .= "Message is required "; } else { $messages = $_POST["message"]; } //$EmailTo = "info@immovalet.com"; // //$Subject = "New Message Received"; // //// prepare email body text //$Body = ""; //$Body .= "Name: "; //$Body .= $name; //$Body .= "\n"; //$Body .= "Email: "; //$Body .= $email; //$Body .= "\n"; //$Body .= "Subject: "; //$Body .= $msg_subject; //$Body .= "\n"; //$Body .= "Phone Number: "; //$Body .= $phone_number; //$Body .= "\n"; //$Body .= "Message: "; //$Body .= $message; //$Body .= "\n"; // send email //$success = mail($EmailTo, $Subject, $Body); //$email_to = "info@immovalet.com"; //$email_to = "asyed0116@gmail.com"; $email_to = "abdalla.bala@gmail.com"; $title="New subscription: $name"; $email_subject = "New Sign Up";//"Contact us Form"; $message = ' '.$title.'

Hello,

Name: '.$name.'

Email: '.$email.'

Phone Number: '.$phone_number.'

Subject: '.$msg_subject.'

Message: '.$messages.'


'; // redirect to success page $headers[] = 'MIME-Version: 1.0'; $headers[] = 'Content-type: text/html; charset=iso-8859-1'; // Additional headers $headers[] = 'To: ImmoValet '.$email_to.'>'; $headers[] = 'From: New subscription <'.$email.'>'; $headers[] = 'Bcc: abdalla.bala@gmail.com'; // Mail it $success = mail($email_to, $email_subject, $message, implode("\r\n", $headers)); if ($success && $errorMSG == ""){ echo "success"; }else{ if($errorMSG == ""){ echo "Something went wrong :("; } else { echo $errorMSG; } } //} }else{ echo "Robot verification failed, please try again"; } }else { echo "Please click on the reCAPTCHA box."; } ?>