Jump to content

dr1983

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Everything posted by dr1983

  1. I`m sorry if the code is messy, to me it makes very little sense. I see the definitions and the processes calling them but it still is baffling to me. I have no real background with php syntax, i know coming here and asking for help and not doing your homework is a big ask. The code was written by the templates creator, the bulk of the site is in flash, a SWF file calling the xml page entitled email which i posted above. Template came without an FLA file too. Infact the code didnt do anything at first and thought php wasnt enabled on my server, ran a test script and that sent. It turns out the creator of the code had put two = signs next to each other, that was about the only thing i could spot that might be wrong at first glance and then it started sending emails like the one included above.
  2. really dont want to treat this like a bump but I`m at wits end with this!
  3. Hi first off i`d like to say hello, i`ve just been customising a site template and the contact form php script appears to be incorrect. I`ve tried to contact the templates creator, but have had no success. The contact form is pretty simple, a name, email and message fields. The form is sending an email but i`m not getting the message text. i get something like this Daniel Reed Photography" which is pretty useless. I`m less than a novice and i know it could be as simple as a typo but if anyone could have a look over this i`d really appreciate it. <?php //Type the receiever's e-mail address $emailAddress = "dr@danielreedphotography.com"; //Type your Site Name $siteName = "Daniel Reed Photography"; $contact_name = $_POST['name']; $contact_email = $_POST['email']; $contact_subject = $_POST['subject']; $contact_message = $_POST['message']; if( $contact_name = true ) { $sender = $contact_email; $receiver = $emailAddress; $client_ip = $_SERVER['REMOTE_ADDR']; $email_body = "The Name Of The Sender: $contact_name \nEmail: $sender \n\nSubject: $contact_subject \n\nMessage: \n\n$contact_message \n\nIP ADDRESS: $client_ip \n\n$siteName"; $emailAutoReply = "Hi $contact_name, \n\nWe have just received your E-Mail. We will get in touch in a few days. Thank you! \n\n$siteName "; $extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion(); $autoReply = "From: $receiver\r\n" . "Reply-To: $receiver \r\n" . "X-Mailer: PHP/" . phpversion(); mail( $sender, "Auto Reply: $contact_subject", $emailAutoReply, $autoReply ); if( mail( $receiver, "New E-Mail - $contact_subject", $email_body, $extra ) ) { echo "success=yes"; } else { echo "success=no"; } } ?> the website is danielreedphotography.com if you`re if seeing the form will help. click the contacts link at the top to see it in action or inaction lol. many thanks, Daniel Reed
×
×
  • 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.