DeSquid Posted January 6, 2007 Share Posted January 6, 2007 I need to create a form in which users provide their email address and select services they are interested. On submit I need:1. A page displayed thanking them for registering2. A form email sent to the user with information about the services3. An email sent to the service providers with the user's information from the form and the services they selected.Each service is provided by a different company.My problem is figuring out how to send the two different emails.If someone could point me in the right direction I would appreciate it.Thanks Link to comment https://forums.phpfreaks.com/topic/33041-form-action-help/ Share on other sites More sharing options...
fert Posted January 6, 2007 Share Posted January 6, 2007 http://us3.php.net/manual/en/function.mail.php Link to comment https://forums.phpfreaks.com/topic/33041-form-action-help/#findComment-153939 Share on other sites More sharing options...
Asheeown Posted January 6, 2007 Share Posted January 6, 2007 http://www.phpfreaks.com/phpmanual/page/function.mail.htmlA whole tutorial on mailwhen your form sends to another page just use$Email = $_POST['Email']Or whatever your form object is called...the variable will be set to the data entered into the form object and you can use it from there Link to comment https://forums.phpfreaks.com/topic/33041-form-action-help/#findComment-153940 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.