Full service web hosting, great prices and support. Starts at $1.99/month!
Results 1 to 2 of 2

Thread: Customizing the Order Process email...

  1. #1
    ReginaStelling
    Guest


    Default Customizing the Order Process email...

    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. #2
    Arpit
    Guest


    Default

    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";
        }
      }
    and before
    Code:
    tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
    make sure you have backups before making changes

Similar Threads

  1. Email Order process problem ...
    By prasetiohadi in forum osCmax v2 Installation issues
    Replies: 0
    Last Post: 11-27-2006, 01:56 AM
  2. order process email issue
    By JohnW in forum osCMax v2 Features Discussion
    Replies: 2
    Last Post: 01-06-2006, 07:39 PM
  3. How to add cust phone # & other to Order Process Email
    By gameparts in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 01-14-2005, 09:59 AM
  4. Customer's email not in Order Process emails Feature or Bug?
    By kerry in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 07-15-2004, 02:12 PM
  5. How to delete last line of order process email
    By Walter in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 10-21-2003, 07:30 PM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •