Skip to content

Commit e2e511c

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: Tweak Fixed invalid alias definition in "Deprecating Service Aliases" YAML example [Mailer] fix ses+smtp credentials format Update workflow.rst
2 parents 9956ba7 + 53fab68 commit e2e511c

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

mailer.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ transport, but you can force to use one:
155155
This table shows the full list of available DSN formats for each third
156156
party provider:
157157

158+
<<<<<<< HEAD
158159
==================== ==================================================== =========================================== ========================================
159160
Provider SMTP HTTP API
160161
==================== ==================================================== =========================================== ========================================
@@ -167,6 +168,18 @@ party provider:
167168
Sendgrid sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
168169
Sendinblue sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
169170
==================== ==================================================== =========================================== ========================================
171+
=======
172+
==================== ========================================== =========================================== ========================================
173+
Provider SMTP HTTP API
174+
==================== ========================================== =========================================== ========================================
175+
Amazon SES ses+smtp://USERNAME:PASSWORD@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
176+
Google Gmail gmail+smtp://USERNAME:PASSWORD@default n/a n/a
177+
Mailchimp Mandrill mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
178+
Mailgun mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
179+
Postmark postmark+smtp://ID@default n/a postmark+api://KEY@default
180+
Sendgrid sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
181+
==================== ========================================== =========================================== ========================================
182+
>>>>>>> 4.4
170183

171184
.. caution::
172185

service_container/alias_private.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ or you decided not to maintain it anymore), you can deprecate its definition:
172172
.. code-block:: yaml
173173
174174
app.mailer:
175-
alias: '@App\Mail\PhpMailer'
175+
alias: 'App\Mail\PhpMailer'
176176
177177
# this outputs the following generic deprecation message:
178178
# Since acme/package 1.2: The "app.mailer" service alias is deprecated. You should stop using it, as it will be removed in the future

workflow.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ Accessing the Workflow in a Class
240240

241241
You can use the workflow inside a class by using
242242
:doc:`service autowiring </service_container/autowiring>` and using
243-
``camelCased workflow name + Workflow`` as parameter name::
243+
``camelCased workflow name + Workflow`` as parameter name. If it is a state
244+
machine type, use ``camelCased workflow name + StateMachine``::
244245

245246
use App\Entity\BlogPost;
246247
use Symfony\Component\Workflow\WorkflowInterface;

0 commit comments

Comments
 (0)