Commit 78efb9a6 authored by Fabien Potencier's avatar Fabien Potencier

merged branch alex88/patch-1 (PR #494)

Commits
-------

eb5d0a48 Fixed missing line before list
07b1246b Fixed null from string to vartype
b5fb45f6 Added configuration example for external server

Discussion
----------

Added configuration example for external server

Just added an example of how to configure an external smtp server for newbie users which don't know where to set it up.

---------------------------------------------------------------------------

by alex88 at 2012-09-18T17:59:13Z

Sorry for the errors, is it ok now?
parents 66204d6b eb5d0a48
...@@ -22,6 +22,17 @@ Parameters ...@@ -22,6 +22,17 @@ Parameters
* **encryption**: SMTP encryption, defaults to null. * **encryption**: SMTP encryption, defaults to null.
* **auth_mode**: SMTP authentication mode, defaults to null. * **auth_mode**: SMTP authentication mode, defaults to null.
Example usage::
$app['swiftmailer.options'] = array(
'host' => 'host',
'port' => '25',
'username' => 'username',
'password' => 'password',
'encryption' => null,
'auth_mode' => null
);
Services Services
-------- --------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment