Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Order process email not coming


ICe45x

Recommended Posts

I asked this as well (without reply):

 

http://www.oscommerce.com/forums/index.php?act...t=0#entry997440

 

The only way it seems is via ADMIN > Config > My Store > Send Extra Order Emails To

 

As you are sending this as a copy, you cannot reply to the customer via this order. You have to reply via ADMIN panel instead. Now that seems a waste of time to me!

Link to comment
Share on other sites

I asked this as well (without reply):

 

http://www.oscommerce.com/forums/index.php?act...t=0#entry997440

 

The only way it seems is via ADMIN > Config > My Store > Send Extra Order Emails To

 

As you are sending this as a copy, you cannot reply to the customer via this order. You have to reply via ADMIN panel instead. Now that seems a waste of time to me!

 

hey gew -

 

Am i hearing you right ? You want the senders email address to be displayed in your order email ?

 

all you need to do is change the lines in the send function in the email.php file.

just change the $from variable to match the $to variable, like this :

$to = (($to_name != '') ? '"' . $to_name . '" <' . $to_addr . '>' : $to_addr);

$from = (($to_name != '') ? '"' . $to_name . '" <' . $to_addr . '>' : $to_addr);

 

Untested!!!

 

david

Link to comment
Share on other sites

all you need to do is change the lines in the send function in the email.php file.

just change the $from variable to match the $to variable, like this :

$to = (($to_name != '') ? '"' . $to_name . '" <' . $to_addr . '>' : $to_addr);

$from = (($to_name != '') ? '"' . $to_name . '" <' . $to_addr . '>' : $to_addr);

 

no because every email your store sends will have the same to/from fields. Instead you should use the $from_email_name, $from_email_address parameters when you call the tep_mail function.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...