MOON
Server: Apache
System: Linux server30c.hostingraja.org 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
User: seoprovi (1222)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /home/seoprovi/moveindiapackersandmoversmalda.in/form.php
<?php
    $firstname = $_POST['firstname'];
	$lastname = $_POST['lastname'];
    $email = $_POST['email'];
	 $phone = $_POST['phone'];
    $message = $_POST['message'];
    $from = 'From: moveindiapackersandmoversmalda.in'; 
    $to = 'debraju955@gmail.com'; 
    $subject = 'Email Inquiry';

    $body = "First Name: $firstname\n\n Last Name: $lastname\n\n E-Mail: $email\n\n Phone: $phone\n Message: $message\n\n";
?>

<?php
if ($_POST['submit']) {
    if (mail ($to, $subject, $body, $from)) { 
        echo '<p>Thank you for your email!</p>';
    } else { 
        echo '<p>Oops! An error occurred. Try sending your message again.</p>'; 
    }
}
?>