Skip to content

3.1.0

Compare
Choose a tag to compare
@samsonasik samsonasik released this 20 May 14:52
· 309 commits to master since this release
3.1.0
ce07e9f

Build Status Coverage Status

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,
           
            // ...
        ],
        
         // ...
    ],

];