Error send email notification
I have this error on submit form with activated notifications email
"Class "Martin\Forms\Classes\Mails\Notification" does not exist" on line 52 of /home2/devcav9e/ftadrianamunoz.com/vendor/winter/storm/src/Foundation/Maker.php
thanks for you help, sorry by my english
I have the same error. I suspect that this is due to the update winter/storm ver. 1.2.2
I had similar issue. Renaming the following folders within classes to lower case seems to do the trick for me.
File location: your-winter-install > plugins > martin > forms > classes
Folders: 'FilePond' and 'Mails'
Rename to 'filepond' and 'mails'
Experiencing the same issue too. @McGonigleDevOps seems to work
@josephcrowell can you test just renaming the classes folder to Classes for me? The changes in Winter's class loading shouldn't have broken anything, but I see that this plugin is using neither PSR-4 nor the October / Winter approach of lower case folders, title case files (since it has a mix of both with classes/Upper/File.php instead of classes/upper/File.php or Classes/Upper/File.php).
Renaming the classes folder to Classes does work, but I'm going to stick to the Winter way moving forward. Martin had a habit of breaking this plugin with incorrect case on file/folder names in the past just like this and I won't be doing that.
@josephcrowell sounds good, I was just checking since the changes in Winter's classloader explicitly fixes PSR-4 support for plugins. Officially Winter currently supports both PSR-4 and the lowercase folders approach, so I leave that up to individual developers to decide which they want to use.