quietflyer Posted December 24, 2003 Share Posted December 24, 2003 I want to add some text to my order process emails. Instead of just having what they ordered, how much it cost, and address, I wan to add a line that tells them when to expect there item. How and where do i do this? Thank you, Cory Link to comment Share on other sites More sharing options...
OceanRanch Posted December 24, 2003 Share Posted December 24, 2003 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 More sharing options...
quietflyer Posted December 24, 2003 Author Share Posted December 24, 2003 Thanks Tom, Ill give it a shot. Cory Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.