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:
342
342
343
343
# app/config/config.yml
344
344
parameters :
345
- acme_blog.author.email : fabien@example.com
345
+ acme_blog.author.email : " fabien@example.com"
346
346
347
347
.. code-block :: xml
348
348
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ via the ``delivery_address`` option:
66
66
67
67
# app/config/config_dev.yml
68
68
swiftmailer :
69
- delivery_address : dev@example.com
69
+ delivery_address : " dev@example.com"
70
70
71
71
.. code-block :: xml
72
72
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ it is broken down.
31
31
handler : swift
32
32
swift :
33
33
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"
36
36
# or list of recipients
37
- # to_email: [dev1@example.com, dev2@example.com, ...]
37
+ # to_email: [" dev1@example.com", " dev2@example.com" , ...]
38
38
subject : An Error Occurred!
39
39
level : debug
40
40
@@ -169,8 +169,8 @@ get logged on the server as well as the emails being sent:
169
169
handler : swift
170
170
swift :
171
171
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"
174
174
subject : An Error Occurred!
175
175
level : debug
176
176
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ used them in your application:
331
331
# some app.yml file from symfony1
332
332
all :
333
333
email :
334
- from_address : foo.bar@example.com
334
+ from_address : " foo.bar@example.com"
335
335
336
336
In Symfony2, you can also create arbitrary entries under the ``parameters ``
337
337
key of your configuration:
@@ -341,7 +341,7 @@ key of your configuration:
341
341
.. code-block :: yaml
342
342
343
343
parameters :
344
- email.from_address : foo.bar@example.com
344
+ email.from_address : " foo.bar@example.com"
345
345
346
346
.. code-block :: xml
347
347
You can’t perform that action at this time.
0 commit comments