File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ The end user can provide values in any configuration file:
342342
343343 # app/config/config.yml
344344 parameters :
345- acme_blog.author.email : fabien@example.com
345+ acme_blog.author.email : " fabien@example.com"
346346
347347 .. code-block :: xml
348348
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ via the ``delivery_address`` option:
6666
6767 # app/config/config_dev.yml
6868 swiftmailer :
69- delivery_address : dev@example.com
69+ delivery_address : " dev@example.com"
7070
7171 .. code-block :: xml
7272
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ it is broken down.
3131 handler : swift
3232 swift :
3333 type : swift_mailer
34- from_email : error@example.com
35- to_email : error@example.com
34+ from_email : " error@example.com"
35+ to_email : " error@example.com"
3636 # or list of recipients
37- # to_email: [dev1@example.com, dev2@example.com, ...]
37+ # to_email: [" dev1@example.com", " dev2@example.com" , ...]
3838 subject : An Error Occurred!
3939 level : debug
4040
@@ -169,8 +169,8 @@ get logged on the server as well as the emails being sent:
169169 handler : swift
170170 swift :
171171 type : swift_mailer
172- from_email : error@example.com
173- to_email : error@example.com
172+ from_email : " error@example.com"
173+ to_email : " error@example.com"
174174 subject : An Error Occurred!
175175 level : debug
176176
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ used them in your application:
331331 # some app.yml file from symfony1
332332 all :
333333 email :
334- from_address : foo.bar@example.com
334+ from_address : " foo.bar@example.com"
335335
336336 In Symfony2, you can also create arbitrary entries under the ``parameters ``
337337key of your configuration:
@@ -341,7 +341,7 @@ key of your configuration:
341341 .. code-block :: yaml
342342
343343 parameters :
344- email.from_address : foo.bar@example.com
344+ email.from_address : " foo.bar@example.com"
345345
346346 .. code-block :: xml
347347
You can’t perform that action at this time.
0 commit comments