Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Order confirmation email


cox1e

Recommended Posts

Hey,

I have been trying to locate the order confirmation email file? but to no avail.

I would like to alter the current text in it, any ideas where i might find this?

 

Thanks in advance as i know this is a simple one, im being thick!

 

Coxie

Link to comment
Share on other sites

Hi Coxie,

 

You can look in checkout_process.php around line 220 you will find text like the one below, this is where the email is being

prepared. (There is some stuff done also before that code)

 

/ 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" .

 

So you can add your text/ your format to it.

 

zvik

Link to comment
Share on other sites

Hi Coxie,

 

You can look in checkout_process.php around line 220 you will find text like the one below, this is where the email is being

prepared. (There is some stuff done also before that code)

 

/ 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" .

 

So you can add your text/ your format to it.

 

zvik

Thanks dude!

Must have skipped over it.

Have a good xmas!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...