Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding a note to the Email Order Receipt


kristal

Recommended Posts

Posted

I want to add in a note to the email receipt that customers get after placing an order. I added in some text in the file checkout_process.php as I show below. But I found out that my note only shows up on the receipt if the customer paid with a credit card. The note doesn't show up if they paid with paypal. How do I add a note to all the email receipts?

 

// lets start with the email confirmation
 $email_order = STORE_NAME . "\n\n" . 
// additional text message
$email_order .= "My note written here. \n\n" .
// end of additional text message
			 EMAIL_SEPARATOR . "\n" . 
			 EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "\n" .
			 EMAIL_TEXT_INVOICE_URL . ' ' . tep_href_link

Archived

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

×
×
  • Create New...