Triggered after a new customer is created.
Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onCustomerCreated', $this, 'process_new_customer');
}
public function process_new_customer($customer)
{
if ($customer->first_name == 'John')
{
// Do something
}
}