3.1.0
Added ability to allow or not include $_FILES to email attachments via include-files-to-attachments
config under email-notification-settings
:
<?php
namespace ErrorHeroModule;
// ...
return [
'error-hero-module' => [
// ...
'email-notification-settings' => [
// ...
// to include or not $_FILES on send mail
'include-files-to-attachments' => true,
// ...
],
// ...
],
];