Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

lenny6582

Archived
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Real Name
    Richard Leonard

lenny6582's Achievements

  1. Right I have located the problem and fixed it: got to the following file: \includes\classes\email.php search for: return mail($to_addr, $subject, $this->output, 'From: ' . $from . $this->lf . 'To: ' . $to . $this->lf . implode($this->lf, $this->headers) . $this->lf . implode($this->lf, $xtra_headers)); mine was on line 521 and all you need to do is change $from to $from_addr so it looks like: return mail($to_addr, $subject, $this->output, 'From: ' . $from_addr . $this->lf . 'To: ' . $to . $this->lf . implode($this->lf, $this->headers) . $this->lf . implode($this->lf, $xtra_headers)); Then when your email comes through you can hit the reply button and reply straight to the person who submitted the query. Hope that helps!
  2. Actually forget that I notice it submits the form to itself!
  3. I found this problem last night and will be looking in to it today. I think the problem is the code that is handling the submitted form is not including the <?php echo tep_draw_input_field('email'); ?> as a variable I will post later when i suss it out. Does anybody know where the code is that this calls: <?php echo tep_draw_form('contact_us', tep_href_link(FILENAME_CONTACT_US, 'action=send')); ?> Thanks
×
×
  • Create New...