12345678910111213141516171819202122232425262728 |
- <?php
- return [
- '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
- 'filename' => 'plugins://email/email.yaml',
- 'modified' => 1529476890,
- 'data' => [
- 'enabled' => true,
- 'from' => NULL,
- 'from_name' => NULL,
- 'to' => NULL,
- 'to_name' => NULL,
- 'mailer' => [
- 'engine' => 'sendmail',
- 'smtp' => [
- 'server' => 'localhost',
- 'port' => 25,
- 'encryption' => 'none',
- 'user' => '',
- 'password' => ''
- ],
- 'sendmail' => [
- 'bin' => '/usr/sbin/sendmail -bs'
- ]
- ],
- 'content_type' => 'text/html',
- 'debug' => false
- ]
- ];
|