It looks like you're new here. If you want to get involved, click one of these buttons!
CumulusClips - Forums
// Activate & Release$newUser->status = 'active';$newUser->released = true;$userMapper->save($newUser);
$mailer->send($newUser->email);
Comments
or make automatic activation. that after the registration of the transfer to your account.
// Activate & Release
$newUser->status = 'active';
$newUser->released = true;
$userMapper->save($newUser);
and remove the line
$mailer->send($newUser->email);
Warning! Changes made to core files will be lost during updates.