PHPackages                             nowo-tech/contact-form-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. nowo-tech/contact-form-bundle

ActiveSymfony-bundle[Admin Panels](/categories/admin)

nowo-tech/contact-form-bundle
=============================

Symfony bundle for configurable multilingual contact forms with GDPR compliance, customizable fields, client association, and admin CRUD.

v1.0.14(3w ago)017MITPHPPHP &gt;=8.2 &lt;8.6CI passing

Since Jul 13Pushed 1w agoCompare

[ Source](https://github.com/nowo-tech/ContactFormBundle)[ Packagist](https://packagist.org/packages/nowo-tech/contact-form-bundle)[ Docs](https://github.com/nowo-tech/ContactFormBundle)[ GitHub Sponsors](https://github.com/HecFranco)[ RSS](/packages/nowo-tech-contact-form-bundle/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (10)Dependencies (58)Versions (16)Used By (0)

Contact Form Bundle
===================

[](#contact-form-bundle)

[![CI](https://github.com/nowo-tech/ContactFormBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/ContactFormBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/b8be416e0ada4d0203395febc6e5f6a85c39a43aecc3dd01a2165e578c0aaa62/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f636f6e746163742d666f726d2d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/contact-form-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/59847e4928251c86675bb8761a41dcc996ae5bf404ddc84972a43f18e64198cf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f636f6e746163742d666f726d2d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/contact-form-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/3f99b197569aa2dcfbefff17ecc68d74098e7f929d8b52dc40f3a898f740eae1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/0701ae1a8855b98dea0f1dc9d9025d6b0f9444a803559dc983614d044176348b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d372e34253230253743253230382e30253230253743253230382e312532422d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![GitHub stars](https://camo.githubusercontent.com/608c0aabd614db654fe8daf61be3437af3de23a00faeb441be1f2627d58bff69/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f636f6e746163742d666f726d2d62756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/ContactFormBundle) [![Coverage](https://camo.githubusercontent.com/17e9763ef0014968642cffb6cc4203ce98f766696fc091aa5aced6f3b4ab0b61/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f7665726167652d39392e34382532352d627269676874677265656e)](#tests-and-coverage)

> ⭐ **Found this useful?** [Install from Packagist](https://packagist.org/packages/nowo-tech/contact-form-bundle) · Give it a **star** on [GitHub](https://github.com/nowo-tech/ContactFormBundle) so more developers can find it.

**Contact Form Bundle** — configurable multilingual contact forms with GDPR consent, customizable fields (email, phone, text, textarea, select), optional client association, anonymous submissions, and admin CRUD. For Symfony 7.4+ and 8 · PHP 8.2+.

[![FrankenPHP Friendly Worker Mode](docs/images/frankenphp-friendly.png)](docs/images/frankenphp-friendly.png)

This bundle is **FrankenPHP worker mode friendly**.

Features
--------

[](#features)

- ✅ **Admin CRUD** for form definitions, customizable fields, and submissions
- ✅ **Multilingual** copy via translation entities (title, labels, GDPR text, success message)
- ✅ **Customizable fields**: text, email, phone, textarea, select (options per field)
- ✅ **GDPR**: required consent checkbox, privacy policy link, IP anonymization, retention days
- ✅ **Client association**: optional link to an existing host client entity or anonymous submissions
- ✅ **Public form** at `/contact/{slug}` with PRG flow and flash success message
- ✅ **Override** Twig templates and translations from your application
- ✅ **Pluggable notifications** (custom notifier, Symfony Mailer, or `ContactSubmissionCreatedEvent`)
- ✅ **GDPR retention cleanup** via `nowo:contact-form:cleanup-submissions`

Installation
------------

[](#installation)

```
composer require nowo-tech/contact-form-bundle
```

Register in `config/bundles.php` if Flex recipe is not applied:

```
Nowo\ContactFormBundle\NowoContactFormBundle::class => ['all' => true],
```

Import routes in `config/routes.yaml`:

```
nowo_contact_form:
    resource: '@NowoContactFormBundle/Resources/config/routes.yaml'
```

Run Doctrine migrations after mapping entities (bundle registers ORM mappings automatically).

Requirements
------------

[](#requirements)

- PHP 8.2+
- Symfony 7.4+ or 8.0+
- Doctrine ORM 2.17+ or 3.x
- [UiKitBundle](https://github.com/nowo-tech/UiKitBundle) ^1.4 and [FormKitBundle](https://github.com/nowo-tech/FormKitBundle) ^2.0 (pulled transitively)
- `twig/extra-bundle` + `twig/string-extra` (pulled transitively)

Demo
----

[](#demo)

```
make -C demo/symfony8 up
```

Default URL: `http://localhost:8021` (see demo `.env.example` for `PORT`).

**FrankenPHP worker mode:** default is `FRANKENPHP_MODE=worker` (see `.env.example`). Set `classic` for per-request PHP / easier hot-reload, then recreate the container (`docker compose up -d`). Details: [docs/DEMO-FRANKENPHP.md](docs/DEMO-FRANKENPHP.md).

Development
-----------

[](#development)

```
make up
make test
make qa
make release-check
```

Documentation
-------------

[](#documentation)

- [GitHub Actions CI requirements](docs/GITHUB_CI.md)
- [Installation](docs/INSTALLATION.md)
- [Configuration](docs/CONFIGURATION.md)
- [Usage](docs/USAGE.md)
- [Contributing](docs/CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)
- [Changelog](docs/CHANGELOG.md)
- [Upgrading](docs/UPGRADING.md)
- [Release](docs/RELEASE.md)
- [Security](docs/SECURITY.md)
- [Coverage policy](docs/COVERAGE.md)
- [Engram](docs/ENGRAM.md)
- [Spec-driven development](docs/SPEC-DRIVEN-DEVELOPMENT.md)
- [GitHub Spec Kit](docs/SPEC-KIT.md)

### Additional documentation

[](#additional-documentation)

- [Demo FrankenPHP](docs/DEMO-FRANKENPHP.md) (when using the FrankenPHP demo)

Tests and coverage
------------------

[](#tests-and-coverage)

LanguageCoveragePHP**99.45%** line coverage on the includable `src/` set (run `make test-coverage` to refresh). See [`docs/COVERAGE.md`](docs/COVERAGE.md).TS/JSN/APythonN/ALicense &amp; author
--------------------

[](#license--author)

MIT · [Nowo.tech](https://nowo.tech) · Héctor Franco Aceituno

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance96

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

15

Last Release

26d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e7947bfc3f2ce9574a18a2c60f3d95b5d1b0740e65dc929332c92f1df21f75ab?d=identicon)[HecFranco](/maintainers/HecFranco)

---

Top Contributors

[![HecFranco](https://avatars.githubusercontent.com/u/24323276?v=4)](https://github.com/HecFranco "HecFranco (39 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (16 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (1 commits)")

---

Tags

contact-formfrankenphpgdprmultilingualphpsymfonysymfony-bundlesymfonymultilingualcrudformSymfony Bundlegdprcontact form

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nowo-tech-contact-form-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nowo-tech-contact-form-bundle/health.svg)](https://phpackages.com/packages/nowo-tech-contact-form-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.7M440](/packages/easycorp-easyadmin-bundle)[contao/core-bundle

Contao Open Source CMS

1231.7M3.1k](/packages/contao-core-bundle)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k4.0M551](/packages/pimcore-pimcore)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

605.9M709](/packages/shopware-core)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k6.1M790](/packages/sylius-sylius)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9830.9k78](/packages/open-dxp-opendxp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
