123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- return array(
- /**
- * Default settings
- */
- 'defaults' => array(
- /**
- * Mail useragent string
- */
- 'useragent' => 'FuelPHP, PHP 5.3 Framework',
- /**
- * Mail driver (mail, smtp, sendmail, noop)
- */
- 'driver' => 'mail',
- /**
- * Whether to send as html, set to null for autodetection.
- */
- 'is_html' => null,
- /**
- * Email charset
- */
- 'charset' => 'utf-8',
- /**
- * Wether to encode subject and recipient names.
- * Requires the mbstring extension: http://www.php.net/manual/en/ref.mbstring.php
- */
- 'encode_headers' => true,
- /**
- * Ecoding (8bit, base64 or quoted-printable)
- */
- 'encoding' => '8bit',
- /**
- * Email priority
- */
- 'priority' => \Email::P_NORMAL,
- /**
- * Default sender details
- */
- 'from' => array(
- 'email' => false,
- 'name' => false,
- ),
- /**
- * Default return path
- */
- 'return_path' => false,
- /**
- * Whether to validate email addresses
- */
- 'validate' => true,
- /**
- * Auto attach inline files
- */
- 'auto_attach' => true,
- /**
- * Auto generate alt body from html body
- */
- 'generate_alt' => true,
- /**
- * Forces content type multipart/related to be set as multipart/mixed.
- */
- 'force_mixed' => false,
- /**
- * Wordwrap size, set to null, 0 or false to disable wordwrapping
- */
- 'wordwrap' => 76,
- /**
- * Path to sendmail
- */
- 'sendmail_path' => '/usr/sbin/sendmail',
- /**
- * SMTP settings
- */
- 'smtp' => array(
- 'host' => '',
- 'port' => 25,
- 'username' => '',
- 'password' => '',
- 'timeout' => 5,
- ),
- /**
- * Newline
- */
- 'newline' => "\n",
- /**
- * Attachment paths
- */
- 'attach_paths' => array(
- // absolute path
- '',
- // relative to docroot.
- DOCROOT,
- ),
- ),
- /**
- * Default setup group
- */
- 'default_setup' => 'default',
- /**
- * Setup groups
- */
- 'setups' => array(
- 'default' => array(),
- ),
- );
|