Hi, Chronoforms v5 running on Joomla 3.7.4.
Since recent there's an error message appearing after submitting a form:
Notice: Undefined index: mail in /home/glasatelier-aalsmeer.nl/public_html/stallet/administrator/components/com_chronoforms5/chronoforms/actions/email/email.php on line 246
Line 246: if($settings['mail']['mail_method'] == 'joomla'){
Anyone an idea what's causing this? Thanks!
Since recent there's an error message appearing after submitting a form:
Notice: Undefined index: mail in /home/glasatelier-aalsmeer.nl/public_html/stallet/administrator/components/com_chronoforms5/chronoforms/actions/email/email.php on line 246
Line 246: if($settings['mail']['mail_method'] == 'joomla'){
Anyone an idea what's causing this? Thanks!
Additionally.. I've dragged the Debugger into the form and after I've submitted the form.. only the below is listed as an error:
Array
(
)
Array
(
)
Hi baboom,
It's not an error, it's a PHP Notice and the simplest way of getting rid of it is to set your Joomla! Site Error Reporting to System Default or to None.
If it is a development site and you need Notices shown then you could edit that line to read
What do you have in the ChronoForms settings tab > Mailing Methods box? I would not expect that to be empty.
Bob
It's not an error, it's a PHP Notice and the simplest way of getting rid of it is to set your Joomla! Site Error Reporting to System Default or to None.
If it is a development site and you need Notices shown then you could edit that line to read
if( !empty($settings['mail']) && $settings['mail']['mail_method'] == 'joomla'){
What do you have in the ChronoForms settings tab > Mailing Methods box? I would not expect that to be empty.
Bob
This topic is locked and no more replies can be posted.