diff --git a/cookbook/email/spool.rst b/cookbook/email/spool.rst index 9210787160d..cf8ccce2c9d 100644 --- a/cookbook/email/spool.rst +++ b/cookbook/email/spool.rst @@ -38,7 +38,8 @@ swiftmailer with the memory option, use the following configuration: @@ -49,7 +50,7 @@ swiftmailer with the memory option, use the following configuration: // app/config/config.php $container->loadFromExtension('swiftmailer', array( - ..., + // ... 'spool' => array('type' => 'memory') )); @@ -75,7 +76,8 @@ In order to use the spool with a file, use the following configuration: @@ -99,7 +101,7 @@ In order to use the spool with a file, use the following configuration: .. tip:: If you want to store the spool somewhere with your project directory, - remember that you can use the `%kernel.root_dir%` parameter to reference + remember that you can use the ``%kernel.root_dir%`` parameter to reference the project's root: .. code-block:: yaml