Advertisement
Guest User

mailphp

a guest
Sep 24th, 2020
1,353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.34 KB | None | 0 0
  1. <?php
  2.  
  3. return [
  4.  
  5.     /*
  6.     |--------------------------------------------------------------------------
  7.     | Default Mailer
  8.     |--------------------------------------------------------------------------
  9.     |
  10.     | This option controls the default mailer that is used to send any email
  11.     | messages sent by your application. Alternative mailers may be setup
  12.     | and used as needed; however, this mailer will be used by default.
  13.     |
  14.     */
  15.  
  16.     'default' => env('MAIL_MAILER', 'sendmail'),
  17.  
  18.     /*
  19.     |--------------------------------------------------------------------------
  20.     | Mailer Configurations
  21.     |--------------------------------------------------------------------------
  22.     |
  23.     | Here you may configure all of the mailers used by your application plus
  24.     | their respective settings. Several examples have been configured for
  25.     | you and you are free to add your own as your application requires.
  26.     |
  27.     | Laravel supports a variety of mail "transport" drivers to be used while
  28.     | sending an e-mail. You will specify which one you are using for your
  29.     | mailers below. You are free to add additional mailers as required.
  30.     |
  31.     | Supported: "smtp", "sendmail", "mailgun", "ses",
  32.     |            "postmark", "log", "array"
  33.     |
  34.     */
  35.  
  36.     'mailers' => [
  37.         'smtp' => [
  38.             'transport' => 'smtp',
  39.             'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
  40.             'port' => env('MAIL_PORT', 587),
  41.             'encryption' => env('MAIL_ENCRYPTION', 'tls'),
  42.             'username' => env('MAIL_USERNAME'),
  43.             'password' => env('MAIL_PASSWORD'),
  44.             'timeout' => null,
  45.             'auth_mode' => null,
  46.         ],
  47.  
  48.         'ses' => [
  49.             'transport' => 'ses',
  50.         ],
  51.  
  52.         'mailgun' => [
  53.             'transport' => 'mailgun',
  54.         ],
  55.  
  56.         'postmark' => [
  57.             'transport' => 'postmark',
  58.         ],
  59.  
  60.         'sendmail' => [
  61.             'transport' => 'sendmail',
  62.             'path' => '/usr/sbin/sendmail -bs',
  63.         ],
  64.  
  65.         'log' => [
  66.             'transport' => 'log',
  67.             'channel' => env('MAIL_LOG_CHANNEL'),
  68.         ],
  69.  
  70.         'array' => [
  71.             'transport' => 'array',
  72.         ],
  73.     ],
  74.  
  75.     /*
  76.     |--------------------------------------------------------------------------
  77.     | Global "From" Address
  78.     |--------------------------------------------------------------------------
  79.     |
  80.     | You may wish for all e-mails sent by your application to be sent from
  81.     | the same address. Here, you may specify a name and address that is
  82.     | used globally for all e-mails that are sent by your application.
  83.     |
  84.     */
  85.  
  86.     'from' => ['address' => 'example@example.com',
  87.     'name' => 'App Name'],
  88.    
  89.  
  90.     /*
  91.     |--------------------------------------------------------------------------
  92.     | Markdown Mail Settings
  93.     |--------------------------------------------------------------------------
  94.     |
  95.     | If you are using Markdown based email rendering, you may configure your
  96.     | theme and component paths here, allowing you to customize the design
  97.     | of the emails. Or, you may simply stick with the Laravel defaults!
  98.     |
  99.     */
  100.  
  101.     'markdown' => [
  102.         'theme' => 'default',
  103.  
  104.         'paths' => [
  105.             resource_path('views/vendor/mail'),
  106.         ],
  107.     ],
  108.  
  109. ];
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement