Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Personalize acknowledgment email


linkot

Recommended Posts

Posted

I searched for information on how to edit checkout_process.php to customize the email acknowledgment and found some specifics but when I look at my checkout_process.php I can't find the exact point of entry for the 'whatever you wanna say goes here' ... could it be that my .php file is newer or older? Your help will be appreciated :) it's this part that I don't find ... or do I have to type it in? $email_order .= prior to my message?

 

CODE:

// lets start with the email confirmation

$email_order = STORE_NAME . "\n" .

EMAIL_SEPARATOR . "\n" .

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

 

REPLACE WITH:

// lets start with the email confirmation

$email_order = STORE_NAME . "\n" .

EMAIL_SEPARATOR . "\n" .

$email_order .= "WHATEVER YOU WANNA SAY GOES HERE" . "\n" .

EMAIL_SEPARATOR . "\n" .

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

Posted
I think you need to look in the appropriate language file

 

huh? :blink:

I'm looking in the 'catalog' folder ... and it is in English, but that's probably not what you mean?

Posted
I think you need to look in the appropriate language file

 

Thanks for directing me to the right file! Thanks!

Archived

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

×
×
  • Create New...