PHPackages                             webprofil/wp-mailqueue - 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. webprofil/wp-mailqueue

ActiveTypo3-cms-extension

webprofil/wp-mailqueue
======================

2.1.0(3y ago)06693[3 issues](https://github.com/Gernott/wp_mailqueue/issues)PHP

Since Oct 11Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Gernott/wp_mailqueue)[ Packagist](https://packagist.org/packages/webprofil/wp-mailqueue)[ RSS](/packages/webprofil-wp-mailqueue/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

TYPO3 extension `wp_mailqueue`
==============================

[](#typo3-extension-wp_mailqueue)

This extension offers the possibility, to send mails from your extbase extension via a Mailqueue. Usually, when you send mails via Extbase, the Mails are sent immediately. This can run into problems with your mailprovider, when he allows only a specific amount of mails per time. This extensions help you with this problem.

How does it work
----------------

[](#how-does-it-work)

Instead of sendin Mails like this:

```
$mail = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Mail\MailMessage::class);
$mail
   ->from(new \Symfony\Component\Mime\Address('john.doe@example.org', 'John Doe'))
   ->to(
      new \Symfony\Component\Mime\Address('receiver@example.com', 'Max Mustermann'),
      new \Symfony\Component\Mime\Address('other@example.net')
   )
   ->subject('Your subject')
   ->text('Here is the message itself')
   ->send()
 ;
```

Use our Class/Method:

```
$mail = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\WEBprofil\WpMailqueue\Domain\Model\Mail::class);
$mail->setSender(new Address($this->settings['fromMail'], $this->settings['fromName']));
$mail->setRecipient(new Address($recipient));
$mail->setSubject(LocalizationUtility::translate('mail_subject', 'my_extkey', null, $language));
$mail->setBody($html);
$mail->addAttachement($fileObject->getCombinedIdentifier());
MailqueueUtility::addToMailqueue($mail);
```

Full control in the Backend
---------------------------

[](#full-control-in-the-backend)

Take a look into the Backend module of wp\_mailqueue. It is self explained. Here you can have a look to the queued and sent mails. You can delete queued mails.

Scheduler Tasks for sending
---------------------------

[](#scheduler-tasks-for-sending)

Add and activate the Scheduler Task to activate the Mailsending from the mailqueue: Execute console commands mailqueue:run

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 81.3% 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 ~112 days

Total

5

Last Release

1233d ago

Major Versions

1.0.2 → 2.0.02022-02-23

### Community

Maintainers

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

---

Top Contributors

[![Gernott](https://avatars.githubusercontent.com/u/1930849?v=4)](https://github.com/Gernott "Gernott (13 commits)")[![lsmacasso](https://avatars.githubusercontent.com/u/69504011?v=4)](https://github.com/lsmacasso "lsmacasso (2 commits)")[![josefglatz](https://avatars.githubusercontent.com/u/2861556?v=4)](https://github.com/josefglatz "josefglatz (1 commits)")

### Embed Badge

![Health badge](/badges/webprofil-wp-mailqueue/health.svg)

```
[![Health](https://phpackages.com/badges/webprofil-wp-mailqueue/health.svg)](https://phpackages.com/packages/webprofil-wp-mailqueue)
```

###  Alternatives

[fluidtypo3/vhs

This is a collection of ViewHelpers for performing rendering tasks that are not natively provided by TYPO3's Fluid templating engine.

1954.1M49](/packages/fluidtypo3-vhs)[in2code/powermail

Powermail is a well-known, editor-friendly, powerful and easy to use mailform extension for TYPO3 with a lots of features

982.5M38](/packages/in2code-powermail)[typo3/testing-framework

The TYPO3 testing framework provides base classes for unit, functional and acceptance testing.

675.0M775](/packages/typo3-testing-framework)[fluidtypo3/flux

The flux package from FluidTYPO3

152982.2k20](/packages/fluidtypo3-flux)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

63991.3k4](/packages/netresearch-rte-ckeditor-image)[friendsoftypo3/content-blocks

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

96374.6k23](/packages/friendsoftypo3-content-blocks)

PHPackages © 2026

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