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.
parent 66204d6b
...@@ -14,7 +14,6 @@ Parameters ...@@ -14,7 +14,6 @@ Parameters
configuration. configuration.
The following options can be set: The following options can be set:
* **host**: SMTP hostname, defaults to 'localhost'. * **host**: SMTP hostname, defaults to 'localhost'.
* **port**: SMTP port, defaults to 25. * **port**: SMTP port, defaults to 25.
* **username**: SMTP username, defaults to an empty string. * **username**: SMTP username, defaults to an empty string.
...@@ -22,6 +21,17 @@ Parameters ...@@ -22,6 +21,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