Jump to content

autoresponse email


tito502

Recommended Posts

Hi, I'm using a php script to send an email from a flash form on my website to my e-mail address. Now how can I send a thank you autoresponse email to the user once they have filled the form, here is the script I'm using

<?php


$sendTo = "myaddress@hotmail.com";
$subject = " site reply";


$headers = "From: " . $_POST["name"] ." ". $_POST["phone"] . "<" . $_POST["email"] .">\r\n";

$headers .= "Reply-To: " . $_POST["email"] . "\r\n";

$headers .= "Return-path: " . $_POST["email"];


$message = $_POST["message"];


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

?>

Thanks!!!
Link to comment
Share on other sites

emails you with the results of what they inputted in the form..
then you want to email them also, saying some thing like, thank you for submitting your info?

just set up another mail()

[code]
$sendTo = $_POST[email];
$subject = "Thank You ".$_POST[name];
$Message = "Thank you for submitting your details.... blah blah";
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.