PHP Classes

File: src/config/config.php

Recommend this page to a friend!
  Classes of Wedmak   Laravel Mail Logger   src/config/config.php   Download  
File: src/config/config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Mail Logger
Track messages sent by Laravel mail to act on them
Author: By
Last change:
Date: 6 years ago
Size: 1,305 bytes
 

Contents

Class file image Download
<?php
/**
 * This file is part of iWedmak\Mail-Log,
 * mailloger for Laravel.
 *
 * @license MIT
 * @package iWedmak\Mail-Log
 */
return [
   
/*
    |--------------------------------------------------------------------------
    | MailLog Table
    |--------------------------------------------------------------------------
    |
    | Where to store emails, change before migration
    |
    */
   
'log_table' => 'maillog',
   
/*
    |--------------------------------------------------------------------------
    | MailLog delay
    |--------------------------------------------------------------------------
    |
    | Delay period in minutes for email's duplicates
    |
    */
   
'delay' => 30,
   
/*
    |--------------------------------------------------------------------------
    | MailLog delay email
    |--------------------------------------------------------------------------
    |
    | Dilay email, so email duplicates will come in delay
    |
    */
   
'bcc_delay' => 'delay@me.com',
   
/*
    |--------------------------------------------------------------------------
    | Maillog Skeep Address
    |--------------------------------------------------------------------------
    |
    | Addres in bcc to skeep logging in db
    |
    */
   
'bcc_skeep' => 'skeep@me.com',
];