Laravel Mail Editor Versions Save

MailEclipse :zap: Laravel Mail Editor

v4.1.0-beta.0

1 year ago

What's Changed

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.5...v4.1.0-beta.0

v4.0.5

1 year ago

Fixes

Dependabot

New Contributors

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.4...v4.0.5

v4.0.4

1 year ago

What's Changed

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.3...v4.0.4

v3.5.3

2 years ago

v4.0.3

2 years ago

What's Changed

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.2...v4.0.3

Thank you to @AliKHODR

v4.0.2

2 years ago

With this addition, please make use of the updated config values in config/maileclipse.php. You need to add the following

    /*
    |--------------------------------------------------------------------------
    | Display Mailable Subject
    |--------------------------------------------------------------------------
    |
    | Set to true this will display the subject of the Mailable instead of Class Name.
    | When the config setting is false the namespace/class name is shown
    | options: true / false
    |
    */
    'display_as_subject' => true,

What's Changed

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.1...v4.0.2

v4.0.1

2 years ago

This adds improved feedback about the usage of factories when the option is enabled in the config file and none are found for a model.

What's Changed (Auto-generated)

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v4.0.0...v4.0.1

v3.5.2

2 years ago

Added

  • Adds the subject of the email client to the table instead of the namespace. See Issue #79, PR #194

Please add the following to the config/maileclipse.php file to be able to toggle the settings for this added feature.

    /*
    |--------------------------------------------------------------------------
    | Display Mailable Subject
    |--------------------------------------------------------------------------
    |
    | Set to true this will display the subject of the Mailable instead of Class Name.
    | When the config setting is false the namespace/class name is shown
    | options: true / false
    |
    */
    'display_as_subject' => true,

Fix

  • Correct custom Mailable directory usage from config, see PR #190 @Bhagyrajaj

Full Changelog: https://github.com/Qoraiche/laravel-mail-editor/compare/v3.5.1...v3.5.2

v4.0.0

2 years ago

v3.5.1

2 years ago

Fixes

  • Fixes an issue where in some cases Faker data would cause a issue for the javascript frontend. See #187 and #188