modified: SRC/config/mail.php

This commit is contained in:
www
2015-03-16 14:20:24 +01:00
parent f9251c68f9
commit b69f8c03b6
4 changed files with 236 additions and 227 deletions

View File

@ -1,7 +1,5 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Mail Driver
@ -14,9 +12,7 @@ return [
| Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log"
|
*/
'driver' => 'smtp',
/*
|--------------------------------------------------------------------------
| SMTP Host Address
@ -27,9 +23,7 @@ return [
| the Mailgun mail service which will provide reliable deliveries.
|
*/
'host' => 'smtp.mailgun.org',
'host' => 'smtp.gmail.com',
/*
|--------------------------------------------------------------------------
| SMTP Host Port
@ -40,9 +34,7 @@ return [
| stay compatible with the Mailgun e-mail application by default.
|
*/
'port' => 587,
/*
|--------------------------------------------------------------------------
| Global "From" Address
@ -53,9 +45,7 @@ return [
| used globally for all e-mails that are sent by your application.
|
*/
'from' => ['address' => null, 'name' => null],
'from' => ['address' => "modulewebl3miashs@gmail.com", 'name' => "moduleWeb"],
/*
|--------------------------------------------------------------------------
| E-Mail Encryption Protocol
@ -66,9 +56,7 @@ return [
| transport layer security protocol should provide great security.
|
*/
'encryption' => 'tls',
/*
|--------------------------------------------------------------------------
| SMTP Server Username
@ -79,9 +67,7 @@ return [
| connection. You may also set the "password" value below this one.
|
*/
'username' => null,
'username' => "modulewebl3miashs@gmail.com",
/*
|--------------------------------------------------------------------------
| SMTP Server Password
@ -92,9 +78,7 @@ return [
| connection so that the application will be able to send messages.
|
*/
'password' => null,
'password' => env('MAIL_PASSWD', ''),
/*
|--------------------------------------------------------------------------
| Sendmail System Path
@ -105,9 +89,7 @@ return [
| been provided here, which will work well on most of your systems.
|
*/
'sendmail' => '/usr/sbin/sendmail -bs',
/*
|--------------------------------------------------------------------------
| Mail "Pretend"
@ -118,7 +100,5 @@ return [
| you may inspect the message. This is great for local development.
|
*/
'pretend' => false,
];