Hi,
I've just found a solution.
You have to add in the file :
administrator\components\com_cckjseblod\helpers\cckonprepare_sendemail.php
the following lines :
$body = str_replace( '[name]', $items['name']->value, $body );
$body = str_replace( '[firstname]', $items['firstname']->value, $body );
just after this line :
$body = str_replace( '[username]', $items['username']->value, $body );
This works for the first e-mail (user construction Email) but I couldn't find the solution for the following emails (validation for users).
Hubhub