Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help with Clients Auto-Mail description.


asgc

Recommended Posts

Where should i change the description in the auto-mail after clients finish the shopping chart.

 

I know the system will auto sent an e-mail with the purchase info.

 

But i need to add few more banking information underneath. Which file should i go to ?

 

The description text are fixed, so no need to do any variable changes.

 

Thank you for the help.

 

 

8y86f6.jpg

Link to comment
Share on other sites

Try checkout_process

 

should read

 

hold of you

 

before paying the deposit

Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile

 

Virus Threat Scanner

My Contributions

Basic install answers.

Click here for Contributions / Add Ons.

UK your site.

Site Move.

Basic design info.

 

For links mentioned in old answers that are no longer here follow this link Useful Threads.

 

If this post was useful, click the Like This button over there ======>>>>>.

Link to comment
Share on other sites

Yes, the bit that sends the email in checkout_process.php

 

www.w3schools.com has an excellent section on php coding.

Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile

 

Virus Threat Scanner

My Contributions

Basic install answers.

Click here for Contributions / Add Ons.

UK your site.

Site Move.

Basic design info.

 

For links mentioned in old answers that are no longer here follow this link Useful Threads.

 

If this post was useful, click the Like This button over there ======>>>>>.

Link to comment
Share on other sites

To add some extra information to the auto-mail :

1) open catalog/includes/languages/english/checkout_process.php in your text editor and add the following line :

 

define('MY_EXTRA_INFORMATION', 'put here anything you want to add');

 

2) open catalog/checkout_process.php and add the following line of code :

$email_order .= MY_EXTRA_INFORMATION;

 

just BEFORE

 

  tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

Open source n'est pas un échange à sens unique ... La plupart du temps un simple merci ou quelques mots d'encouragement suffisent...

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...