Hi Again
I solved it
The trouble is when user set email in UPPERCASE like EMAIL@GMAIL.COM ,
I create a override/classes/Mail.php
with code
class Mail extends MailCore {
public static function send(
$idLang,
$template,
$subject,
$templateVars,
$to,
$toName = null,
$from = null,
$fromName = null,
$fileAttachment = null,
$mode_smtp = null,
$templatePath = _PS_MAIL_DIR_,
$die = false,
$idShop = null,
$bcc = null,
$replyTo = null,
$replyToName = null
)
{
$to = strtolower($to);
return parent::Send($idLang, $template, $subject, $templateVars, $to, $toName, $from, $fromName, $fileAttachment, $mode_smtp, $templatePath, $die, $idShop, $bcc, $replyTo);
}
}
and now it works ok
thanks a lot