in the log i can see this message:
mod_fcgid: stderr: PHP Warning: A non-numeric value encountered in /var/www/vhosts/mydomain.es/httpdocs/web/libraries/CBLib/CB/Legacy/cbNotification.php on line 489, referer:
www.mydomain.es/administrator/index.php?option=com_comprofiler&view=new&cbprevstate=b3B0aW9uPWNvbV9jb21wcm9maWxlciZ2aWV3PXNob3d1c2VycyZ0YXNrPXNob3d1c2Vycw%3D%3D
The problem was that there was a '-' in te code. I deleted it and it works.
$result = comprofilerMail(
( $fromEmail !== false ? $fromEmail : $fromUser->email ),
( $fromName !== false ? $fromName : $fromUser->name ),
$toUser->email,
$subject,
-
$message,
$mode,
$cc,
$bcc,
$attachment,
$replyToEmail,
$replyToName,
$this->mailerProperties,
$this->errorMSG
);