Jump to content

Klaire

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Klaire's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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\" /]
×
×
  • 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.