This is a discussion on Customizing the Order Process email... within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi! I know this should not be hard, but I'm not sure how to customize the Order Process email...ya know, ...
| |||||||
| Register | FAQ | Donate | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi! I know this should not be hard, but I'm not sure how to customize the Order Process email...ya know, the one you get from osCommerce when the order has been made... I just want to add the following message: ** Thank you for your order. We will notify you via email when your order has been shipped. customerservice@supremiumfoods.com** I think it's in the checkout_process.php module...but I'm not sure where to put it... |
|
#2
| |||
| |||
| i would TRY to concatenate $email_order to hold your extra lines of text after Code: if (is_object($$payment)) {
$email_order .= EMAIL_TEXT_PAYMENT_METHOD . "\n" .
EMAIL_SEPARATOR . "\n";
$payment_class = $$payment;
$email_order .= $payment_class->title . "\n\n";
if ($payment_class->email_footer) {
$email_order .= $payment_class->email_footer . "\n\n";
}
}
Code: tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Email Order process problem ... | prasetiohadi | osCMax v2 Installation issues | 0 | 11-27-2006 12:56 AM |
| order process email issue | JohnW | osCMax v2 Features Discussion | 2 | 01-06-2006 06:39 PM |
| How to add cust phone # & other to Order Process Email | gameparts | osCMax v1.7 Discussion | 1 | 01-14-2005 08:59 AM |
| Customer's email not in Order Process emails Feature or Bug? | kerry | osCMax v1.7 Discussion | 1 | 07-15-2004 02:12 PM |
| How to delete last line of order process email | Walter | osCommerce 2.2 Modification Help | 1 | 10-21-2003 07:30 PM |