Yes, it should be fixed in 2.0.10. Below is a quickfix if you want to make the change now though.
IN: components/com_comprofiler/comprofiler.php
ON: Line 829
FROM:
Code:
$res = $cbNotification->sendFromSystem( $user->id, $subject, $message );
TO:
Code:
$res = $cbNotification->sendFromSystem( $user->id, $subject, $message, true, ( isset( $ueConfig['reg_email_html'] ) ? (int) $ueConfig['reg_email_html'] : 0 ) );
ON: Line 898
FROM:
Code:
$res = $cbNotification->sendFromSystem( $user->id, $subject, $message );
TO:
Code:
$res = $cbNotification->sendFromSystem( $user->id, $subject, $message, true, ( isset( $ueConfig['reg_email_html'] ) ? (int) $ueConfig['reg_email_html'] : 0 ) );
That'll allow the "Registration Email HTML" parameter in CB > Configuration > Registration to also enable HTML for forgot login email.