Download the PHP package se468/laravel-mail-preview without Composer

On this page you can find all versions of the php package se468/laravel-mail-preview. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-mail-preview

Laravel Mail Preview / Local Email Inbox Driver

Forked from Laravel Mail Preview.

This package introduces a new preview and local mail driver for Laravel that when selected will render the content of the sent email and save it as both .html and .eml files.

localemail

Installation

Begin by installing the package through Composer. Run the following command in your terminal:

Then publish the config file:

Finally, change MAIL_DRIVER to preview or local in your .env file:

Run

How it works

Mail Preview

Everytime an email is sent, an .html and .eml file will be generated in storage/email-previews with a name that includes the first recipient and the subject:

You can open the .html file in a web browser, or open the .eml file in your default email client to have a realistic look at the final output.

Local Email Storage

If you are using local for the MAIL_DRIVER, you can go to /email-previews route to see all the emails that has been stored. It will create a local inbox where you can see and preview the emails that's sent out.

Preview in a web browser

When you open the .html file in a web browser you'll be able to see how your email will look, however there might be some differences that varies from one email client to another.

At the beginning of the generated file you'll find an HTML comment with all the message info:

Package Configurations

From the config/mailpreview.php file you'll be able to change the output location of the preview files as well as the maximum lifetime for keeping previews, after this time old previews will get removed.

Logged out after clicked on the preview link

You will always lose your current session if you click on the generated notification link. This is because Laravel stores the session in an encrypted cookie. To change this behavior, you have to adjust the middleware property in the config/mailpreview.php file to match the following snippet:


All versions of laravel-mail-preview with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
illuminate/support Version ~5.5
illuminate/mail Version ~5.5
illuminate/filesystem Version ~5.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package se468/laravel-mail-preview contains the following files

Loading the files please wait ....