Show
Ignore:
Timestamp:
02/02/2008 09:37:18 PM (11 months ago)
Author:
Shadowhand
Message:

Cleaning up email helper.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/config/email.php

    r1893 r1903  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * Mail connection DSN, used with the email helper. 
     3 * SwiftMailer driver, used with the email helper. 
    44 * 
    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 
    810 */ 
    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;