I wrote some custom stuff so I can send an email with some various data to a customer when their order has completed. The problem is, I can't seem to find where or when I can verify that the payment has been processed successfully.

I tried triggering the event using:

payment::after_process()

but that appears to fire when the order has processed, not the payment. I need to be sure the customer has paid before triggering this event.

Where can I do this?

link|improve this question

feedback

2 Answers

Why not just customize includes/classes/order.php and modify send_order_email(). You have the order id so you can verify that the status is Processing (or something other than Pending) so you know the payment has been accepted.

link|improve this answer
This or something like it apparently works great with all modules except for remote-hosted payment processing services (ex. PayPal IPN).. which my client happened to be using. – Stephen J. Fuhry Apr 17 '11 at 19:48
feedback
up vote 0 down vote accepted

DrByte over at zen-cart.com answered my question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.