This is a discussion on How to add cust phone # & other to Order Process Email within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; How do I add the following items to the Order Process Email generated by Checkout_process.php: Customer's phone number Customer's email ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| How do I add the following items to the Order Process Email generated by Checkout_process.php: Customer's phone number Customer's email address I think I know where to put it, I just don't know what code to use. Thanks! |
|
#2
| |||
| |||
| Once again, I found my own answer on another support page. Why is it that no one here knows the answers? Anyway, here is how to add customer email and phone number to the confirmation email: My solution is: \catalog\checkout_process.php orig. CODE if ($order->content_type != 'virtual') { $email_order .= "\n" . EMAIL_TEXT_DELIVERY_ADDRESS . "\n" . EMAIL_SEPARATOR . "\n" . tep_address_label($customer_id, $sendto, 0, '', "\n") . "\n"; } \catalog\checkout_process.php modif. CODE if ($order->content_type != 'virtual') { $email_order .= "\n" . EMAIL_TEXT_DELIVERY_ADDRESS . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_MAIL . $order->customer['email_address'] . "\n" . EMAIL_SEPARATOR . "\n" . tep_address_label($customer_id, $sendto, 0, '', "\n") . EMAIL_TEXT_PHONE . $order->customer['telephone']. "\n"; } In more, the following lines, must be added \catalog\includes\languages\(your language)\checkout_process.php CODE define('EMAIL_TEXT_MAIL', 'Email: '); define('EMAIL_TEXT_PHONE', 'Telefono: '); |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Email Order process problem ... | prasetiohadi | osCMax v2 Installation issues | 0 | 11-27-2006 01:56 AM |
| how do we include phone number in the order email? | chuan | osCMax v2 Customization/Mods | 2 | 10-16-2006 12:43 AM |
| order process email issue | JohnW | osCMax v2 Features Discussion | 2 | 01-06-2006 07:39 PM |
| Help! How do we Modify Admin & Cust. Order Welcome Email | mrrob | osCommerce 2.2 Modification Help | 3 | 02-05-2005 12:32 PM |
| Customizing the Order Process email... | ReginaStelling | osCommerce 2.2 Modification Help | 1 | 08-12-2004 06:36 AM |