Fix command now fully working with json

This commit is contained in:
osaajani 2020-01-08 16:17:12 +01:00
parent 31d2739ccb
commit 929ea695e1
5 changed files with 18 additions and 16 deletions

View file

@ -202,7 +202,7 @@ namespace controllers\internals;
$controller->render($settings['template'], $datas);
$content = ob_get_clean();
return mail($to, $settings['subject'], $content);
return @mail($to, $settings['subject'], $content);
}
/**