Ticket #450: email-config.php
| File email-config.php, 0.7 kB (added by Shadowhand, 10 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| 2 | /** |
| 3 | * SwiftMailer driver, used with the email helper. |
| 4 | * |
| 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 |
| 10 | */ |
| 11 | $config['driver'] = 'smtp'; |
| 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'] = array('hostname'=>'mail.itgse.ro', 'username'=>'office@itgse.ro', 'password'=>'office1981', 'port'=>'26', 'auth' => 'LOGIN'); |
