Triggered after a new customer record has been imported from a CSV file.
The event handler should accept two parameters - the array of imported fields and the customer identifier.
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onAfterCsvCustomerCreated', $this, 'csv_customer_created');
}
public function csv_customer_created($fields, $id)
{
// Do something
}