Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Another email question


quietflyer

Recommended Posts

Look in catalog/checkout_process.php around line 228 for

// lets start with the email confirmation

  $email_order = STORE_NAME . "\n" .

                EMAIL_SEPARATOR . "\n" .

                EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "\n" .

                EMAIL_TEXT_INVOICE_URL . ' ' . tep_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $insert_id, 'SSL', false) . "\n" .

                EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n\n";

After that line you could add your own line of text such as:

$email .= "You can expect to receive your order in xxx days\n";

Of course it depends upon the selected shipping etc. But you get the idea where you can add text to the email. (Note the .= not just an =).

 

HTH

Tom

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...