[Solved] Sending a confirmation message automatically to a given email id in form [closed]


You are just one line away from sending the mail. Use the PHP mail function.


    $from = "[email protected]";
    $to = $email;
    $subject = "Auto reply - HR Consultants Pakistan";
    $message = "Dear $name, \n\n Thank you for your registration. We will Get back to you Soon. \n \n If you have any questions, you can call us on \n \n ";
    mail( $to, $subject, $message);

Suggestion: please SEARCH before you question. You’ll get this easily by googling.

3

solved Sending a confirmation message automatically to a given email id in form [closed]