Lifeform Posted October 6, 2005 Share Posted October 6, 2005 Hi, Does anyone know how to "manipulate" OSC to show the active customers e-mail address in the invoices sent by e-mail? Would also be great to have this address listed in the main invoice text in the body of the e-mail. Any contribution or hack for this?? Hope this is becomes a function that the developers include in the official version of this great solution. Link to comment Share on other sites More sharing options...
Joe7 Posted October 14, 2005 Share Posted October 14, 2005 this would be useful. you could match it to a paypal payment for example Link to comment Share on other sites More sharing options...
Lifeform Posted October 14, 2005 Author Share Posted October 14, 2005 Is there a certain way or subforum one can let the developers know we want this as a permanent change in the system....? Link to comment Share on other sites More sharing options...
Joe7 Posted October 14, 2005 Share Posted October 14, 2005 this is the correct forum mate, if they want to add they will, if someone wants to make it they will :P probably quite a simple bit of code would sort it out to be fair Link to comment Share on other sites More sharing options...
nana Posted October 14, 2005 Share Posted October 14, 2005 $email_order .= $order->customer['email_address']. "\n"; add this line where in the email you want it to display Link to comment Share on other sites More sharing options...
Lifeform Posted October 28, 2005 Author Share Posted October 28, 2005 Thanks!!! ;-) Do you know if there's a way to put it in the From-field in the e-mailheader as well ? Link to comment Share on other sites More sharing options...
Lifeform Posted October 28, 2005 Author Share Posted October 28, 2005 Hmm Could you tips me as well on what file to put this in? What's the file for the e-mail confirmation...? Newbee progger here... Link to comment Share on other sites More sharing options...
allcam Posted December 17, 2005 Share Posted December 17, 2005 Hmm Could you tips me as well on what file to put this in? What's the file for the e-mail confirmation...? Newbee progger here... catalog/checkout_process.php This is how I add both Tel No and Email address in the order confirmation email: $email_order .= "\n" . EMAIL_TEXT_DELIVERY_ADDRESS . "\n" . EMAIL_SEPARATOR . "\n" . tep_address_label($customer_id, $sendto, 0, '', "\n") . "\n" . "Tel: " . $order->customer['telephone'] . "\n" . "Email: " . $order->customer['email_address']. "\n" . "\n"; You can also edit the title text in this file: catalog/languages/english/checkout_process.php Link to comment Share on other sites More sharing options...
Lifeform Posted December 19, 2005 Author Share Posted December 19, 2005 catalog/checkout_process.php This is how I add both Tel No and Email address in the order confirmation email: $email_order .= "\n" . EMAIL_TEXT_DELIVERY_ADDRESS . "\n" . EMAIL_SEPARATOR . "\n" . tep_address_label($customer_id, $sendto, 0, '', "\n") . "\n" . "Tel: " . $order->customer['telephone'] . "\n" . "Email: " . $order->customer['email_address']. "\n" . "\n"; You can also edit the title text in this file: catalog/languages/english/checkout_process.php Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.