tito502 Posted July 25, 2006 Share Posted July 25, 2006 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!!! Quote Link to comment https://forums.phpfreaks.com/topic/15606-autoresponse-email/ Share on other sites More sharing options...
leeming Posted July 25, 2006 Share Posted July 25, 2006 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] Quote Link to comment https://forums.phpfreaks.com/topic/15606-autoresponse-email/#findComment-63478 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.