/home/techb158/workloadmatch.com
NameSizeModeActions
.well-known/-0755rm
1iosaek/-0755rm
Admin/-0755rm
api/-0755rm
assets/-0755rm
BackUp/-0744rm
bootstrap/-0755rm
bower_components/-0777rm
bsixuqo/-0755rm
cgi-bin/-0744rm
Client/-0755rm
dist/-0755rm
ge1hbpj/-0755rm
img/-0755rm
includes/-0755rm
js/-0755rm
jvyngoi/-0755rm
layout/-0755rm
LoadMatch/-0755rm
lyfwjeg/-0755rm
Manager/-0755rm
Master/-0755rm
mjes1kn/-0755rm
mralkqo/-0755rm
plugins/-0755rm
quforks/-0755rm
styles/-0755rm
Teacher/-0755rm
vendor/-0755rm
workloadmatch.com/-0750rm
.env7960644editdlrm
.env.example13870644editdlrm
.env_bak3640700editdlrm
.gitignore1420644editdlrm
.git_changed_files.txt00644editdlrm
.git_untracked_files.txt4554690644editdlrm
.htaccess7330644editdlrm
.htaccess-bak.disabled85040644editdlrm
.htaccess.production85040644editdlrm
admin.php00644editdlrm
authorized.php47410644editdlrm
authorized_bak.php.disabled10550644editdlrm
auto_email_notification.php8310644editdlrm
DEPLOY_CHECKLIST.md19920644editdlrm
deploy_fix.php35260644editdlrm
error.php4850644editdlrm
footer.php6300644editdlrm
forgetpassword.php61820644editdlrm
forgetpassword._Bak.php22540644editdlrm
form-newsletter.php6620644editdlrm
form-process.php30900644editdlrm
getlang.php2830644editdlrm
home.php167520644editdlrm
index.php30800644editdlrm
myaccounts.php21920644editdlrm
php.ini6370644editdlrm
postPersons.php18750644editdlrm
reset.php23300644editdlrm
Signup.php220740644editdlrm
vtphrzxy.php73170644editdlrm
workloadmatch-deployment.zip149949080644editdlrm
wp-cron-cqig.php16590644editdlrm
Edit: /home/techb158/workloadmatch.com/form-process.php (3090B)
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@workloadmatch.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@workloadmatch.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: Course Management System '.$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."; } ?>