PHPackages                             fucodo/form-easy-mail - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. fucodo/form-easy-mail

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

fucodo/form-easy-mail
=====================

Simplifies the form mail finishers

0.1.1(1y ago)0234GPL-2.0+PHP

Since May 22Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/fucodo/form-easy-mail)[ Packagist](https://packagist.org/packages/fucodo/form-easy-mail)[ Docs](http://fucodo.de/)[ RSS](/packages/fucodo-form-easy-mail/feed)WikiDiscussions main Synced today

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Form Easy Mail
==============

[](#form-easy-mail)

[![TYPO3 10](https://camo.githubusercontent.com/614ff8ea70de89b6c0ffa951832460b9b407e0c321814a05fe00c02fe6999487/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31302d6f72616e67652e737667)](https://get.typo3.org/version/10)[![TYPO3 11](https://camo.githubusercontent.com/5432de37ab8517e6d9e6f803a2e1a7674a308c6d93896fe8a6fbc8a4cb50aece/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31312d6f72616e67652e737667)](https://get.typo3.org/version/11)

> Simplifies the form mail finishers in TYPO3 by enforcing default sender settings.

About The Project
-----------------

[](#about-the-project)

Form Easy Mail is a TYPO3 extension that enhances the default form mail finishers by automatically enforcing system-defined sender settings. This prevents common issues caused by user misconfiguration of email settings in forms.

### Features

[](#features)

- Automatically uses the system's default mail sender address
- Uses the website title from site configuration as the sender name
- Works with both EmailToSender and EmailToReceiver finishers
- Compatible with TYPO3 v10 and v11

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

[](#installation)

### Requirements

[](#requirements)

- TYPO3 CMS 10.x or 11.x

### Installation Steps

[](#installation-steps)

1. Install via composer:

    ```
    composer require fucodo/form-easy-mail

    ```
2. Activate the extension in the Extension Manager or via command line:

    ```
    vendor/bin/typo3 extension:activate form_easy_mail

    ```

That's it! No further configuration is needed for the extension itself.

Mail Configuration
------------------

[](#mail-configuration)

For the extension to work properly, you need to ensure your TYPO3 mail configuration is set up correctly. This is done in your site's `LocalConfiguration.php` or `AdditionalConfiguration.php` file:

```
$GLOBALS['TYPO3_CONF_VARS']['MAIL'] = [
    'defaultMailFromAddress' => 'noreply@yourdomain.com',
    'defaultMailFromName' => 'Your Website Name',
    'transport' => 'smtp', // Options: 'smtp', 'sendmail', 'mail'

    // For SMTP transport
    'transport_smtp_server' => 'smtp.yourdomain.com:25',
    'transport_smtp_username' => 'username', // if required
    'transport_smtp_password' => 'password', // if required
    'transport_smtp_encrypt' => 'tls', // Options: '', 'ssl', 'tls'

    // For sendmail transport
    'transport_sendmail_command' => '/usr/sbin/sendmail -t -i',
];
```

### Transport Options

[](#transport-options)

1. **SMTP**: Recommended for production environments

    - Requires valid SMTP server settings
    - Most reliable option for email delivery
2. **Sendmail**: Alternative for Linux/Unix servers

    - Uses the server's sendmail command
    - Requires proper server configuration
3. **Mail**: Basic option (PHP mail function)

    - Simplest to set up but less reliable
    - Not recommended for production environments

How It Works
------------

[](#how-it-works)

The extension overrides the default TYPO3 form email finishers to enforce the sender settings defined in your TYPO3 configuration. This prevents issues where form submissions might fail due to invalid sender addresses entered by users or configured incorrectly in the form setup.

License
-------

[](#license)

Distributed under the GPL-2.0+ License. See `composer.json` for more information.

Contact
-------

[](#contact)

Kay Strobach -

Project Link:

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance53

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

408d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c6681704a769ab93a20ba54d94054d0f3f1e81b99341e8cfa29d91f6d8f16fb?d=identicon)[kaystrobach](/maintainers/kaystrobach)

---

Top Contributors

[![kaystrobach](https://avatars.githubusercontent.com/u/1185776?v=4)](https://github.com/kaystrobach "kaystrobach (6 commits)")

### Embed Badge

![Health badge](/badges/fucodo-form-easy-mail/health.svg)

```
[![Health](https://phpackages.com/badges/fucodo-form-easy-mail/health.svg)](https://phpackages.com/packages/fucodo-form-easy-mail)
```

###  Alternatives

[typo3/cms-styleguide

TYPO3 extension to showcase TYPO3 Backend capabilities

106760.3k33](/packages/typo3-cms-styleguide)[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103519.9k53](/packages/friendsoftypo3-content-blocks)[eliashaeussler/typo3-form-consent

Extension for TYPO3 CMS that adds double opt-in functionality to EXT:form

1595.5k](/packages/eliashaeussler-typo3-form-consent)[pagemachine/typo3-formlog

Form log for TYPO3

23238.6k8](/packages/pagemachine-typo3-formlog)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

40529.5k](/packages/wazum-sluggi)[typo3/cms-redirects

TYPO3 CMS Redirects - Create manual redirects, list existing redirects and automatically createredirects on slug changes.

167.4M80](/packages/typo3-cms-redirects)

PHPackages © 2026

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