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?