root/trunk/system/config/email.php
| Revision 3700, 0.7 kB (checked in by Shadowhand, 12 days ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | <?php |
| 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'] = 'native'; |
| 12 | |
| 13 | /** |
| 14 | * To use secure connections with SMTP, set "port" to 465 instead of 25. |
| 15 | * To enable TLS, set "encryption" to "tls". |
| 16 | * |
| 17 | * Driver options: |
| 18 | * @param null native: no options |
| 19 | * @param string sendmail: executable path, with -bs or equivalent attached |
| 20 | * @param array smtp: hostname, (username), (password), (port), (auth), (encryption) |
| 21 | */ |
| 22 | $config['options'] = NULL; |
Note: See TracBrowser
for help on using the browser.
