CONTACT US
Get in touch, we are waiting
The quickest way to make contact is to give us a call or Whatsapp on 07956-175751
Otherwise, you can send us a quick message in the contact pod below.
$value) {
$label = ucwords(str_replace('_', ' ', $key));
$message .= "$label: $value\n";
}
$message .= "\nChecklist Items Checked:\n" . implode(", ", $checklist);
// Email configuration
$to = "you@example.com"; // Replace with your email
$subject = "New Cybersecurity Questionnaire Submission";
$headers = "From: no-reply@example.com\r\n" .
"Reply-To: no-reply@example.com\r\n" .
"Content-Type: text/plain; charset=UTF-8";
// Send email
if (mail($to, $subject, $message, $headers)) {
echo "
Thank you for your submission.
"; } else { echo "Sorry, there was an error processing your request.
"; } } else { echo "Invalid request method.
"; } ?>