gitextract_mleti689/ ├── .ddev/ │ └── config.yaml ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── ci.yml │ ├── create-release.yml │ └── issues.yml ├── .gitignore ├── .lintstagedrc.json ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── ecs.php ├── package.json ├── phpstan.neon └── src/ ├── Mailer.php ├── Plugin.php ├── controllers/ │ └── SendController.php ├── events/ │ └── SendEvent.php ├── models/ │ ├── Settings.php │ └── Submission.php ├── templates/ │ └── _settings.twig └── translations/ ├── ar/ │ └── contact-form.php ├── de/ │ └── contact-form.php ├── es/ │ └── contact-form.php ├── fr/ │ └── contact-form.php ├── it/ │ └── contact-form.php └── nl/ └── contact-form.php