@@ -7,7 +7,7 @@ How to send an Email
7
7
Sending emails is a classic task for any web application and one that has
8
8
special complications and potential pitfalls. Instead of recreating the wheel,
9
9
one solution to send emails is to use the ``SwiftmailerBundle ``, which leverages
10
- the power of the `Swiftmailer `_ library.
10
+ the power of the `Swift Mailer `_ library.
11
11
12
12
.. note ::
13
13
@@ -29,7 +29,7 @@ the power of the `Swiftmailer`_ library.
29
29
Configuration
30
30
-------------
31
31
32
- Before using Swiftmailer , be sure to include its configuration. The only
32
+ Before using Swift Mailer , be sure to include its configuration. The only
33
33
mandatory configuration parameter is ``transport ``:
34
34
35
35
.. configuration-block ::
@@ -74,7 +74,7 @@ mandatory configuration parameter is ``transport``:
74
74
'password' => "your_password",
75
75
));
76
76
77
- The majority of the Swiftmailer configuration deals with how the messages
77
+ The majority of the Swift Mailer configuration deals with how the messages
78
78
themselves should be delivered.
79
79
80
80
The following configuration attributes are available:
@@ -96,7 +96,7 @@ The following configuration attributes are available:
96
96
Sending Emails
97
97
--------------
98
98
99
- The Swiftmailer library works by creating, configuring and then sending
99
+ The Swift Mailer library works by creating, configuring and then sending
100
100
``Swift_Message `` objects. The "mailer" is responsible for the actual delivery
101
101
of the message and is accessible via the ``mailer `` service. Overall, sending
102
102
an email is pretty straightforward::
@@ -123,7 +123,7 @@ To keep things decoupled, the email body has been stored in a template and
123
123
rendered with the ``renderView() `` method.
124
124
125
125
The ``$message `` object supports many more options, such as including attachments,
126
- adding HTML content, and much more. Fortunately, Swiftmailer covers the topic
126
+ adding HTML content, and much more. Fortunately, Swift Mailer covers the topic
127
127
of `Creating Messages `_ in great detail in its documentation.
128
128
129
129
.. tip ::
@@ -135,5 +135,5 @@ of `Creating Messages`_ in great detail in its documentation.
135
135
* :doc: `dev_environment `
136
136
* :doc: `spool `
137
137
138
- .. _`Swiftmailer ` : http://swiftmailer.org/
138
+ .. _`Swift Mailer ` : http://swiftmailer.org/
139
139
.. _`Creating Messages` : http://swiftmailer.org/docs/messages.html
0 commit comments