sudhaus7 / mail-spool
Integrates swiftmailer spool transport for TYPO3.
Installs: 5 024
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^8.7.0 || ^9.5.0
Requires (Dev)
- nimut/testing-framework: ^1.0
- phpunit/phpunit: ^6.0
Replaces
- mail_spool: 2.1.0
- typo3-ter/mail-spool: 2.1.0
This package is auto-updated.
Last update: 2024-11-04 23:57:56 UTC
README
.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -- coding: utf-8 -- with BOM.
Documentation
This is a Fork of https://github.com/r3h6/TYPO3.EXT.mail_spool
This extension integrates the swiftmailer spool transport for TYPO3 v8 and v9. The Spool Command has been rewritten to use the Symfony Console, and in 'file' mode the spooled E-Mails are written to the result of Environment::getVarPath()
Installation
With composer req sudhaus7/mail-spool
Warning
After installation this extension overwrites in the file "ext_localconf" the mail transport configuration to SUDHAUS7\MailSpool\Mail\SpoolTransport
!
Configuration
You can configure the type of spool and the location where the messsages get stored in the extension configurations.
Integration
If you are using the file spool, you must set up an extbase scheduler task or execute the command "spool:send".
Scheduler
There is no direct Scheduler Option anymore, but the process can be scheduled with https://github.com/helhum/typo3-crontab
Warning
The option daemon is only for CLI usage.
Commands (CLI)
See ./vendor/bin/typo3 mailspool:runspool -h
for details.
Note
If you like run the command as a daemon on linux systems you can try Upstart.
# Example # /etc/init/myscript.conf # sudo service myscript start # sudo service myscript stop # sudo service myscript status # Your script information description "Send spooled messages." author "R3H6" # Describe events for your script start on startup stop on shutdown # Respawn settings respawn # respawn limit COUNT INTERVAL respawn limit unlimited # Run your script! script /var/www/dev7.local.typo3.org/typo3/cli_dispatch.phpsh extbase spool:send --daemon >/dev/null 2>&1 end script
FAQ
- After installing, no e-mails get send anymore, why?
- Please read the section "Integration".
Contributing
Bug reports and pull request are welcome through GitHub.