PHP Classes

File: conf/development/mail.php

Recommend this page to a friend!
  Classes of Fernando Val   Springy   conf/development/mail.php   Download  
File: conf/development/mail.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Springy
Microframework for Web application development
Author: By
Last change:
Date: 1 month ago
Size: 393 bytes
 

Contents

Class file image Download
<?php

/*
 * Springy Framework Configuration File.
 *
 * Used for "development" environment.
 *
 * If removed, only conf/mail.php will be used.
 */

return [
   
'default_driver' => 'phpmailer-class',
   
'mailers' => [
       
'phpmailer-class' => [
           
'username' => '[email protected]',
           
'password' => 'put-your-password-here',
           
'debug' => 0,
        ],
    ],
];