Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0f6c246

Browse files
bicpiweaverryan
authored andcommitted
Fix wording and formatting
1 parent84fc4c3 commit0f6c246

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

‎cookbook/email/cloud.rst

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ option. If setting up and maintaining your own reliable mail server causes
1212
you a headache there's a simple solution: Leverage the cloud to send your
1313
emails.
1414

15-
The following example shows how easy it is to integrate
16-
`Amazon's Simple Email Services (SES)`_ into Symfony. But no matter what
17-
service you're actually using, there's nothing more to it than configuring an
18-
SMTP endpoint for Swift Mailer.
15+
This cookbook shows how easy it is to integrate
16+
`Amazon's Simple Email Service (SES)`_ into Symfony.
17+
18+
.. note::
19+
20+
You can use the same technique for other mail services, as most of the
21+
time there is nothing more to it than configuring an SMTP endpoint for
22+
Swift Mailer.
1923

2024
In the Symfony configuration, change the Swift Mailer settings ``transport``,
2125
``host``, ``port`` and ``encryption`` according to the information provided in
@@ -52,7 +56,8 @@ and complete the configuration with the provided ``username`` and ``password``:
5256
port="465"
5357
encryption="tls"
5458
username="AWS_ACCESS_KEY"
55-
password="AWS_SECRET_KEY" />
59+
password="AWS_SECRET_KEY"
60+
/>
5661
</container>
5762
5863
..code-block::php
@@ -108,6 +113,6 @@ And that's it, you're ready to start sending emails through the cloud!
108113

109114
* SES may be subject to a charge.
110115

111-
.. _`Amazon's Simple EmailServices (SES)`:http://aws.amazon.com/ses
116+
.. _`Amazon's Simple EmailService (SES)`:http://aws.amazon.com/ses
112117
.. _`SES console`:https://console.aws.amazon.com/ses
113118
.. _`Amazon Web Services (AWS)`:http://aws.amazon.com

‎cookbook/email/gmail.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ In the development configuration file, change the ``transport`` setting to
4040
<swiftmailer:config
4141
transport="gmail"
4242
username="your_gmail_username"
43-
password="your_gmail_password" />
43+
password="your_gmail_password"
44+
/>
4445
</container>
4546
4647
..code-block::php

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp