Klaire Posted June 9, 2006 Share Posted June 9, 2006 Hi there.... I tried putting 4 mail functions like you asked me to but still its sending 2 emails. The wierd thing is that is only 2 mails functions working in the form. Let me explain you more in detail: 1st try : response first 2 emails [code]if($autoresponse == "yes") { $autosubject = stripslashes($autosubject); $automessage = stripslashes($automessage); mail($Email_Comp3,"$autosubject","$messageref3","From: $recipientname <$recipientemail>"); mail($Email_Comp2,"$autosubject","$messageref2","From: $recipientname <$recipientemail>"); mail($recipientemail,"$subjectref","$messageusref","From: $Name <$Email>"); mail($recipientemail,"$subject","$message","From: $Name <$Email>"); mail($Email,"$autosubject","$automessage","From: $recipientname <$recipientemail>"); } echo "$thanks"; } [/code]2nd try : response first 2 emails [code]mail($Email_Comp3,"$autosubject","$messageref3","From: $recipientname <$recipientemail>"); mail($Email_Comp2,"$autosubject","$messageref2","From: $recipientname <$recipientemail>"); if($autoresponse == "yes") { $autosubject = stripslashes($autosubject); $automessage = stripslashes($automessage); mail($recipientemail,"$subjectref","$messageusref","From: $Name <$Email>"); mail($recipientemail,"$subject","$message","From: $Name <$Email>"); mail($Email,"$autosubject","$automessage","From: $recipientname <$recipientemail>"); } echo "$thanks"; } [/code]3rd try : response first 2 emails (second autoresponse) [code]if($autoresponse == "yes") { $autosubject = stripslashes($autosubject); $automessage = stripslashes($automessage); mail($Email_Comp3,"$autosubject","$messageref3","From: $recipientname <$recipientemail>"); mail($Email_Comp2,"$autosubject","$messageref2","From: $recipientname <$recipientemail>"); } if($autoresponse == "yes") { $autosubject = stripslashes($autosubject); $automessage = stripslashes($automessage); mail($recipientemail,"$subjectref","$messageusref","From: $Name <$Email>"); mail($recipientemail,"$subject","$message","From: $Name <$Email>"); mail($Email,"$autosubject","$automessage","From: $recipientname <$recipientemail>"); } echo "$thanks"; } [/code]Do you think that its all because i have one autoresponse and one recipientemail? [img src=\"style_emoticons/[#EMO_DIR#]/unsure.gif\" style=\"vertical-align:middle\" emoid=\":unsure:\" border=\"0\" alt=\"unsure.gif\" /] Quote Link to comment https://forums.phpfreaks.com/topic/11563-response-webform-problem/ 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.