PHP Classes

Laravel Local Email Sender: Send email messages to logs that can be viewed

Recommend this page to a friend!
  Info   View files Documentation   View files View files (39)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog (1)    
Last Updated Ratings Unique User Downloads Download Rankings
2023-09-20 (2 days ago) RSS 2.0 feedNot yet rated by the usersTotal: 14 This week: 14All time: 11,082 This week: 10Up
Version License PHP version Categories
laravel-local-mailer 1.0MIT/X Consortium ...8Email, Debug, Logging, Testing, PHP 8
Description 

Author

Andey Iatsenko


Contributor

This package can send email messages to logs that can be viewed.

It provides a local mailer transport class compatible with actual mailer transport classes that can send messages to real mail addresses, except that messages are sent to local log files.

The package also provides a Web-based user interface that lets developers view the messages sent to local mailer logs.

Picture of Andrey Iatsenko
  Performance   Level  
Name: Andrey Iatsenko <contact>
Classes: 3 packages by
Country: Russian Federation Russian Federation
Innovation award
Innovation award
Nominee: 3x

Details

Local mailer for laravel

Packagist Version GitHub Workflow Status Coverage License Packagist Downloads Packagist Downloads

Each developer needs to check the sending of email messages during development. Most of them have their own ways - usage gmail, Mailtrap, laravel logs, etc.

This solution will create its own mail transport, saving emails as daily logs, with the ability to view!

image

:scroll: Installation

The package can be installed via composer:

composer require yzen.dev/laravel-local-mailer

In the config config/mail.php add a new transport:

return [
    //...
    'mailers' => [
        //...
        'local-mailer' => [
            'transport' => 'local-mailer'
        ],
    ]
]

Now you can include this transport in the env:

MAIL_MAILER=local-mailer

The page for viewing is available at `{HOST}/local-mailer`. Here you can view the log for any date. For each log, the full email will be displayed - the title, to, contents of the letter (html page), attached files, etc.

image

  Files folder image Files  
File Role Description
Files folder image.github (1 directory)
Files folder imagesrc (6 files, 5 directories)
Files folder imagetests (1 file, 3 directories)
Accessible without login Plain text file .editorconfig Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file composer.lock Data Auxiliary data
Accessible without login Plain text file phpcs.xml Data Auxiliary data
Accessible without login Plain text file phpstan.neon Data Auxiliary data
Accessible without login Plain text file phpunit.xml Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  .github  
File Role Description
Files folder imageworkflows (2 files)

  Files folder image Files  /  .github  /  workflows  
File Role Description
  Accessible without login Plain text file code-analyze.yml Data Auxiliary data
  Accessible without login Plain text file tests.yml Data Auxiliary data

  Files folder image Files  /  src  
File Role Description
Files folder imageconfig (1 file)
Files folder imageContract (2 files)
Files folder imageHttp (2 directories)
Files folder imageParser (2 files)
Files folder imageviews (4 files, 1 directory)
  Plain text file Filesystem.php Class Class source
  Plain text file LocalMailerService.php Class Class source
  Plain text file LocalMailerTransport.php Class Class source
  Plain text file MailerLogger.php Class Class source
  Plain text file RouteServiceProvider.php Class Class source
  Plain text file ServiceProvider.php Class Class source

  Files folder image Files  /  src  /  config  
File Role Description
  Accessible without login Plain text file local-mailer.php Aux. Auxiliary script

  Files folder image Files  /  src  /  Contract  
File Role Description
  Plain text file FilesystemContract.php Class Class source
  Plain text file MailLoggerContract.php Class Class source

  Files folder image Files  /  src  /  Http  
File Role Description
Files folder imageControllers (2 files)
Files folder imageResources (1 file)

  Files folder image Files  /  src  /  Http  /  Controllers  
File Role Description
  Plain text file LocalMailerController.php Class Class source
  Plain text file LocalMailerResourceController.php Class Class source

  Files folder image Files  /  src  /  Http  /  Resources  
File Role Description
  Plain text file MailResources.php Class Class source

  Files folder image Files  /  src  /  Parser  
File Role Description
  Plain text file Mail.php Class Class source
  Plain text file MailParser.php Class Class source

  Files folder image Files  /  src  /  views  
File Role Description
Files folder imagecss (1 file)
  Accessible without login Plain text file dashboard.blade.php Aux. Auxiliary script
  Accessible without login Plain text file mails.blade.php Aux. Auxiliary script
  Accessible without login Plain text file not-found.blade.php Aux. Auxiliary script
  Accessible without login Plain text file _template.blade.php Aux. Auxiliary script

  Files folder image Files  /  src  /  views  /  css  
File Role Description
  Accessible without login Plain text file styles.css Data Auxiliary data

  Files folder image Files  /  tests  
File Role Description
Files folder imageE2E (2 directories)
Files folder imageFeature (2 files)
Files folder imageMails (3 files)
  Plain text file TestCase.php Class Class source

  Files folder image Files  /  tests  /  E2E  
File Role Description
Files folder imageLocalMailerController (4 files)
Files folder imageLocalMailerResourceController (1 file)

  Files folder image Files  /  tests  /  E2E  /  LocalMailerController  
File Role Description
  Plain text file DownloadLogTest.php Class Class source
  Plain text file IndexTest.php Class Class source
  Plain text file RemoveLogTest.php Class Class source
  Plain text file ShowByDateTest.php Class Class source

  Files folder image Files  /  tests  /  E2E  /  LocalMailerResourceController  
File Role Description
  Plain text file IndexTest.php Class Class source

  Files folder image Files  /  tests  /  Feature  
File Role Description
  Plain text file SendAttachedFilesTest.php Class Class source
  Plain text file TransportTest.php Class Class source

  Files folder image Files  /  tests  /  Mails  
File Role Description
  Accessible without login Plain text file example.txt Data Example message
  Plain text file TextMailTest.php Class Class source
  Plain text file TextMailWithAttachedFilesTest.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:14
This week:14
All time:11,082
This week:10Up