craft3-forms
craft3-forms copied to clipboard
This craft CMS 3 form plugin makes it easy to create and use custom forms with the features the Yii 2 Framework offers. On top of this, the plugin provides even more functionalities for easy implemen...
Changed the lowercase "l" to an UperCase "L" to fix a Composer 2 compatibility issue.
When installing this plugin with Composer 1, the following deprecation notice is output: > Deprecation Notice: Class `plugins\dolphiq\form\models\log` located in `./vendor/dolphiq/craft3-forms/src/models/Log.php` does not comply with psr-4 autoloading standard\. It will...
For a general contact form, in MainController, action Index if(!is_null($mail_owner)) { $ownerMail = $mailer->compose($mail_owner, ['model' => $form, 'params' => $params]) ->setSubject($form->getSettings()->mail_subject_owner) **->setReplyTo([$form->email])** ->setTo($form->getSettings()->mail_to); // Save owner mail $this->saveInDb($form, $ownerMail); //...
I was wondering if this plugin works with IIS? I'm doing my local dev on a mac and can get the forms to work just fine, but when I push...
I have a request which I'm planning to implement for myself. But would like to discuss it first so it is likelier that this will be merged :). I'm planning...
Allow users to attach files to their forms and email them to the owner. - Set a `public $files = [];` on the model to define files that should be...