Skip to content

Releases: dmcbrn/laravel-email-database-log

REAMDE.md update

20 Mar 23:25
Compare
Choose a tag to compare

Add explanations for undocumented config parameters.

Fix missing parameter in getEmail() method

20 Mar 23:02
Compare
Choose a tag to compare

Fix missing parameter in getEmail() method

Add API endpoints

20 Mar 22:39
Compare
Choose a tag to compare

Add API endpoints with JSON responses and reflect changes made in backend to blade templates.

README.md updated

Bug fix - call config value for `email_log.mailgun.filter_unknown_emails` properly

06 Jul 22:57
Compare
Choose a tag to compare

Bugfix.

IF check checking should we log events without parent email (by message ID) is now calling config value correctly.

You should not change this config value email_log.mailgun.filter_unknown_emails from default true to false at this point as there is a foreign key constraint set up on email_log_events table making it impossible to actually save the events which don't belong to any row in email_log.

Major fixes for changes introduced in 5.1. (using filestystems)

10 May 12:17
Compare
Choose a tag to compare
  • fixes for fetching and presenting attachments
  • update of readme for 5.1 upgrade

5.2.0

10 May 10:46
Compare
Choose a tag to compare

Following changes have been made:

  • remove env() from MailgunEvent.php and extract to config
  • separate route prefix for webhook events which defaults to the default prefix
  • list webhook events on single email page
  • you can decide in config whether to save the webhook events which don't have a parent email in the database

Use Laravel's filesystems instead of linking directly to local folder - BREAKING CHANGE

10 May 09:39
Compare
Choose a tag to compare

This is a breaking change from 5.0.3

As the size of email log attachments can grow fast the package has been upgraded to use Laravel's filesystem functionality.
This way you can easily store your email log attachments on a separate disk like AWS, DO's disk spaces and other..

align attachment separator, change of attachments response

06 May 14:05
Compare
Choose a tag to compare

The app now uses , as attachments separator consistently.
Using response() to return attachment.

minor code alignment

17 Jan 13:50
Compare
Choose a tag to compare

multiple middleware

17 Jan 13:42
88373c6
Compare
Choose a tag to compare

You can use multiple middleware now