ICe45x Posted January 17, 2007 Share Posted January 17, 2007 When someone places an order I do not get the email that says Order process. I checked to see if the email was working by doing a send email to customer through admin and that worked. Any ideas? Thanks Link to comment Share on other sites More sharing options...
webgurl2006 Posted January 17, 2007 Share Posted January 17, 2007 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 More sharing options...
davidinottawa Posted January 17, 2007 Share Posted January 17, 2007 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 More sharing options...
Guest Posted January 17, 2007 Share Posted January 17, 2007 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 More sharing options...
davidinottawa Posted January 18, 2007 Share Posted January 18, 2007 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. doh! thx Mark - of course Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.