Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8382133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:51:45+00:00 2026-06-09T16:51:45+00:00

I receive my email from postmaster@domain.co.uk instead of the $email I specified. the php

  • 0

I receive my email from postmaster@domain.co.uk instead of the $email I specified.

the php should set $email as the person sending the email but It goes to the default postmaster@domain.co.uk

    <?php
    // Clean up the input values
    foreach($_POST as $key => $value) {
      if(ini_get('magic_quotes_gpc'))
        $_POST[$key] = stripslashes($_POST[$key]);

      $_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
    }

    mb_convert_encoding($string, "UTF-8"); //AUTO DETECT AND CONVERT
    mb_convert_encoding($string, "UTF-8", "latin1");

    // Assign the input values to variables for easy reference
    $name = $_POST["name"]; 
    $email = $_POST["email"];
    $telephone = $_POST["telephone"];
    $pages = $_POST["pages"];
    $budget = $_POST["budget"];
    $message = $_POST["message"];


    // Test input values for errors
    $errors = array();
    if(strlen($name) < 2) {
      if(!$name) {
        $errors[] = "You must enter a name.";
      } else {
        $errors[] = "Name must be at least 2 characters.";
      }
    }
    if(!$email) {
      $errors[] = "You must enter an email.";
    } else if(!validEmail($email)) {
      $errors[] = "You must enter a valid email.";
    }
    if(strlen($telephone) < 6) {
      if(!$telephone) {
        $errors[] = "You must enter a phone number.";
      } else {
        $errors[] = "Message must be at least 6 characters. (include area code)";
      }
    }
    if(strlen($message) < 10) {
      if(!$message) {
        $errors[] = "You must enter a message.";
      } else {
        $errors[] = "Message must be at least 10 characters.";
      }
    }

    if($errors) {
      // Output errors and die with a failure message
      $errortext = "";
      foreach($errors as $error) {
        $errortext .= "<li>".$error."</li>";
      }
      die("<span class='failure'>The following errors occured:<ul>". $errortext ."</ul></span>");
    }

    // Send the email
    $to = "contact@dorsetdesigns.co.uk";
    $subject = "Quote Request: $name";
    $message = "Telephone Number: $telephone"."<br />"."Job Details: $message"."<br />"."Number of Pages Required: $pages"."<br />"."Clients Budget: $budget";
    $headers = 'Content-Type: text/html; charset=utf-8';
    "Quote Request From: $email";

    mail($to, $subject, $message, $headers);

    // Die with a success message
    die("<span class='success'>Success! Your message has been sent.</span>");

    // A function that checks to see if
    // an email is valid
    function validEmail($email)
    {
       $isValid = true;
       $atIndex = strrpos($email, "@");
       if (is_bool($atIndex) && !$atIndex)
       {
          $isValid = false;
       }
       else
       {
          $domain = substr($email, $atIndex+1);
          $local = substr($email, 0, $atIndex);
          $localLen = strlen($local);
          $domainLen = strlen($domain);
          if ($localLen < 1 || $localLen > 64)
          {
             // local part length exceeded
             $isValid = false;
          }
          else if ($domainLen < 1 || $domainLen > 255)
          {
             // domain part length exceeded
             $isValid = false;
          }
          else if ($local[0] == '.' || $local[$localLen-1] == '.')
          {
             // local part starts or ends with '.'
             $isValid = false;
          }
          else if (preg_match('/\\.\\./', $local))
          {
             // local part has two consecutive dots
             $isValid = false;
          }
          else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain))
          {
             // character not valid in domain part
             $isValid = false;
          }
          else if (preg_match('/\\.\\./', $domain))
          {
             // domain part has two consecutive dots
             $isValid = false;
          }
          else if(!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/',
                     str_replace("\\\\","",$local)))
          {
             // character not valid in local part unless
             // local part is quoted
             if (!preg_match('/^"(\\\\"|[^"])+"$/',
                 str_replace("\\\\","",$local)))
             {
                $isValid = false;
             }
          }
          if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A")))
          {
             // domain not found in DNS
             $isValid = false;
          }
       }
       return $isValid;
    }

    ?>

and the js

    $(function() {
      // Validate the contact form
      $('#contactform').validate({
        // Specify what the errors should look like
        // when they are dynamically added to the form
        errorElement: "label",
        wrapper: "td",
        errorPlacement: function(error, element) {
          error.insertBefore( element.parent().parent() );
          error.wrap("<tr class='error'></tr>");
          $("<td></td>").insertBefore(error);
        },

        // Add requirements to each of the fields
        rules: {
          name: {
            required: true,
            minlength: 2
          },
          email: {
            required: true,
            email: true
          },
           telephone: {
            required: true,
            minlength: 6
          },
          message: {
            required: true,
            minlength: 10
          }
        },

        // Specify what error messages to display
        // when the user does something horrid
        messages: {
          name: {
            required: "Please enter your name.",
            minlength: jQuery.format("At least {0} characters required.")
          },
          email: {
            required: "Please enter your email.",
            email: "Please enter a valid email."
          },
          telephone: {
            required: "Please enter a phone number.",
            minlength: jQuery.format("At least {0} characters required.")

          },
          message: {
            required: "Please enter a message.",
            minlength: jQuery.format("At least {0} characters required.")
          }
        },

        // Use Ajax to send everything to quote.php
        submitHandler: function(form) {
          $("#send").attr("value", "Sending...");
          $(form).ajaxSubmit({
            target: "#response",
            success: function(responseText, statusText, xhr, $form) {
              $(form).slideUp("fast");
              $("#response").html(responseText).hide().slideDown("fast");
            }
          });
          return false;
        }
      });
    });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T16:51:46+00:00Added an answer on June 9, 2026 at 4:51 pm

    Don’t have the ability to check right now, but I don’t think the From address is being added to your $header variable.

    $headers = 'Content-Type: text/html; charset=utf-8';     
               "Quote Request From: $email"; 
    

    Here is an example of setting up additional headers I found on the PHP Mail Manual.

    // To send HTML mail, the Content-type header must be set
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    
    // Additional headers
    $headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
    $headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
    $headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
    $headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
    

    http://www.php.net/manual/en/function.mail.php

    Yours… at least according to the documentation.

    $headers  = 'Content-type: text/html; charset=utf-8' . "\r\n";
    $headers .= "From: $email" . "\r\n";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing post-receive hook basing on the post-receive-email script from the contrib dir, but
I can successfully receive email from SendGrid and process its data. My problem is
I just received an email from our host and they've upgraded our PHP to
greetings all i have a problem that when sending an email from the server
I'm using Google Apps for my domain email and I noticed when I receive
I'm using post-receive-email hook from the Git distribution to send e-mails to certain users
For some reason i cant receive any email from my submit form - is
I am using Google Apps for domain to host the email from my domain
We want to set up a system where administrators of clones receive email notification
How can I receive Email with Microsoft Azure? Yes, I know the instruction from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.