Snowfire\Beautymail\BeautymailServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        $this->publishes([__DIR__ . '/../../config/settings.php' => config_path('beautymail.php')], 'config');
        $this->publishes([__DIR__ . '/../../../public' => public_path('vendor/beautymail')], 'public');
        $this->loadViewsFrom(__DIR__ . '/../../views', 'beautymail');
        $this->app['mailer']->getSwiftMailer()->registerPlugin(new CssInlinerPlugin());
    }
BeautymailServiceProvider