I've noticed a bug in email sending. If I just set "Árajánlat" to mailfrom, than it get's sent out with bad address ( mind the special chars in it! ) - email address and email from name swaps!
I made some fix, since it's not clear in the docs, that in what format should I provide the FROM when creating the form. Fix is applied on line 482 in components/com_ckforms/models/ckforms.php:
- Code: Select all
$jconf = & JFactory::getConfig();
$mail->setSender( array( $jconf->getValue('mailfrom'), $ckform->emailfrom) );
Maybe, in further relases two fields should be provided for email sending: one for name and one for from address.