1
Hello all
I started using formulaire 3.24 as my forms generator and couldn't send HTML massages.
Since I saw it uses
$xoopsMailer->multimailer->isHTML(true);
and still don't send HTML, I thought/realized, it might be a 2.2.x specific issue ...
I added to formulaire/index.php ...
right after
$xoopsMailer->assign("SENDMAIL", $send_mail);
This new line:
$xoopsMailer->setContentType("text/html");
And now it sends HTML mails ...
Enjoy