mail.php 4.64 KB
Newer Older
冯超鹏's avatar
冯超鹏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "sendmail", "mailgun", "ses",
    |            "postmark", "log", "array"
    |
    */

冯超鹏's avatar
冯超鹏 committed
19
    'driver' => env('MAIL_DRIVER','smtp'),
冯超鹏's avatar
冯超鹏 committed
20 21 22 23 24 25 26 27 28 29 30 31

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Mailgun mail service which will provide reliable deliveries.
    |
    */

冯超鹏's avatar
冯超鹏 committed
32
    'host' => env('MAIL_HOST','smtp.qq.com'),
冯超鹏's avatar
冯超鹏 committed
33 34 35 36 37 38 39 40 41 42 43 44

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to deliver e-mails to
    | users of the application. Like the host we have set this value to
    | stay compatible with the Mailgun e-mail application by default.
    |
    */

冯超鹏's avatar
冯超鹏 committed
45
    'port' => env('MAIL_PORT','465'),
冯超鹏's avatar
冯超鹏 committed
46 47 48 49 50 51 52 53 54 55 56 57 58

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => [
冯超鹏's avatar
冯超鹏 committed
59
        'address' => env('MAIL_FROM_ADDRESS','2758505256@qq.com'),
冯超鹏's avatar
冯超鹏 committed
60
        'name' => env('MAIL_FROM_NAME','邮件发送'),
冯超鹏's avatar
冯超鹏 committed
61 62 63 64 65 66 67 68 69 70 71 72 73
    ],

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

冯超鹏's avatar
冯超鹏 committed
74
    'encryption' => env('MAIL_ENCRYPTION','ssl'),
冯超鹏's avatar
冯超鹏 committed
75 76 77 78 79 80 81 82 83 84 85 86

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

冯超鹏's avatar
冯超鹏 committed
87
    'username' => env('MAIL_USERNAME','2758505256@qq.com'),
冯超鹏's avatar
冯超鹏 committed
88

冯超鹏's avatar
冯超鹏 committed
89
    'password' => env('MAIL_PASSWORD','qekjtybbeswsdhec'),
冯超鹏's avatar
冯超鹏 committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

    /*
    |--------------------------------------------------------------------------
    | Markdown Mail Settings
    |--------------------------------------------------------------------------
    |
    | If you are using Markdown based email rendering, you may configure your
    | theme and component paths here, allowing you to customize the design
    | of the emails. Or, you may simply stick with the Laravel defaults!
    |
    */

冯超鹏's avatar
冯超鹏 committed
115 116 117 118 119 120 121 122
    'pretend' => false,
//    'markdown' => [
//        'theme' => 'default',
//
//        'paths' => [
//            resource_path('views/vendor/mail'),
//        ],
//    ],
冯超鹏's avatar
冯超鹏 committed
123 124 125 126 127 128 129 130 131 132 133 134

    /*
    |--------------------------------------------------------------------------
    | Log Channel
    |--------------------------------------------------------------------------
    |
    | If you are using the "log" driver, you may specify the logging channel
    | if you prefer to keep mail messages separate from other log entries
    | for simpler reading. Otherwise, the default channel will be used.
    |
    */

冯超鹏's avatar
冯超鹏 committed
135
    //'log_channel' => env('MAIL_LOG_CHANNEL'),
冯超鹏's avatar
冯超鹏 committed
136 137

];