Changeset 1903 for trunk/system/config/email.php
- Timestamp:
- 02/02/2008 09:37:18 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/config/email.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/email.php
r1893 r1903 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Mail connection DSN, used with the email helper.3 * SwiftMailer driver, used with the email helper. 4 4 * 5 * PHP mail function - native://mail 6 * Server sendmail - sendmail:///path/to/sendmail 7 * External SMTP - smtp://user:password@host:port 5 * @see http://www.swiftmailer.org/wikidocs/v3/connections/nativemail 6 * @see http://www.swiftmailer.org/wikidocs/v3/connections/sendmail 7 * @see http://www.swiftmailer.org/wikidocs/v3/connections/smtp 8 * 9 * Valid drivers are: native, sendmail, smtp 8 10 */ 9 $config['dsn'] = 'native://mail'; 11 $config['driver'] = 'native'; 12 13 /** 14 * Driver options: 15 * @param null native: no options 16 * @param string sendmail: executable path, with -bs or equivalent attached 17 * @param array smtp: hostname, (username), (password), (port) 18 */ 19 $config['options'] = NULL;
