solvecase / sentmaillogger
Save a copy of laravel sent email in imap sent folder.
Requires
- ext-imap: *
- laravel/framework: >=9
This package is auto-updated.
Last update: 2024-12-08 06:09:25 UTC
README
Save a copy of laravel sent email in imap sent folder.
Take a look at contributing.md to see a to do list.
Installation
Via Composer
composer require solvecase/sentmaillogger
Prerequisite
-
laravel-framework >=9
-
php-imap extension
Configuration
LOG_SENT_MESSAGE=true
LOG_ON_QUEUE=true
IMAP_PORT=993
IMAP_PROTOCOL="imap"
IMAP_ENCRYPTION="ssl"
IMAP_FOLDER="Sent"
IMAP_VALIDATE_CERT=true
IMAP_HOST="your-mail-host.com"
IMAP_USERNAME="email@example.com"
IMAP_PASSWORD="********"
LOG_SENT_MESSAGE
enable/disable sent mail logger
LOG_ON_QUEUE
implements Illuminate\Contracts\Queue\ShouldQueue
IMAP_FOLDER
folder to be appended sent mail.
IMAP_PROTOCOL
imap
— Use IMAP [default]pop3
— Use POP3nntp
— Use NNTP
IMAP_ENCRYPTION
false
— Disable encryptionssl
— Use SSL [default]tls
— Use TLSstarttls
— Use STARTTLSnotls
— Use NoTLS
IMAP_VALIDATE_CERT
validate certificates from TLS/SSL server
See more information on PHP-IMAP
Change log
Please see the changelog for more information on what has changed recently.
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email support@solvecase.com instead of using the issue tracker.
Credits
License
MIT. Please see the license file for more information.