I hope someone can help. On Agency, as per documentation I have installed Grav 1.7.26 and Form 6.0.0. I am having problems when sending emails using the Agency contact form, on send I get the Crikey message:
TypeError
Argument 1 passed to Grav\Plugin\EmailPlugin::isAssocArray() must be of the type array, null given, called in /home/donordirect/public_html/user/plugins/email/email.php on line 105
The section in my email.php is:
$this->grav->fireEvent('onEmailSend', new Event(['params' => &$params, 'vars' => &$vars]));
if ($this->isAssocArray($params)) {
$this->sendFormEmail($form, $params, $vars);
} else {
foreach ($params as $email) {
$this->sendFormEmail($form, $email, $vars);
Line 105 is: if ($this->isAssocArray($params)) {
Anyone recognise the error? Thanks :)