/
/
home
/
u523034047
/
domains
/
psassociate.org
/
public_html
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.52
PHP 8.3.16
Dir:
/home/u523034047/domains/psassociate.org/public_html
Edit:
/home/u523034047/domains/psassociate.org/public_html/contact_us.php
<?php // Retrieve form data $name = $_POST['name']; $email = $_POST['email']; $subject = $_POST['subject']; $message = $_POST['message']; // Compose email message $to = "info@manalicottage.com"; $subject = "New Contact Form Submission"; $body = "Name: $name\n"; $body .= "Email: $email\n"; $body .= "Subject: $subject\n"; $body .= "Message: $message\n"; // Additional headers $headers = "From: $email"; // Send email if (mail($to, $subject, $body, $headers)) { echo "<a href='index.html'>Thank you for contacting us!</a>"; } else { echo "Error: Unable to send contact form submission email."; } ?>
Ukuran: 609 B