Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Send invoice after checkout succeed


waro

Recommended Posts

Posted

Yes osc does have the option to send invoice email after checkout successful.

 

In osc Admin, under Configuration/E-Mail Options, ensure that Send E-Mails is set to true.

Posted

Yes, you can. Just open up catalog/checkout_process.php and search for the following line (around line 258):

 

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

 

This is the code for sending the invoice to your customer. As you can see, $email_order is the content that is to be sent. Tracing back a few lines will give you a rough idea of how the original invoice has been built.

 

The actual text can be found in catalog/includes/languages/english/checkout_process.php.

 

Hope this helps...

Posted

I noticed that there is also the option to send the invoice to multiple recipients..... but, is it possible to have two versions of the invoice sent to two recipients:

 

1.Standard invoice/order information to person buying products

2.Full payment and order information sent to store owner

 

- my thought is that if i can have the order information sent directly to the store owner, we don't have to have her logging into admin and possibly screwing with things... for now she is processing the cards manually in her store so would need one email with the info on it....?

 

What do you think? This might work as it seems you can remove the diferent 'stages' in the order process, so you could just have one default order status that reads - 'Received' or something like that..?

  • 2 weeks later...
Posted

Sorry to repost again, but wondered if anyone had any ideas on the eamiling of the full order details to the 'shop'.

 

Is security an issue?

 

Is it possible for the 'shop' to login in and see only the order details - not the full admin section? Is there a way of abridging the admin for someone else? Different admin levels?

Archived

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

×
×
  • Create New...