Skip to content

Commit 2fc4c2f

Browse files
committed
some tweaks for the Webhook docs
1 parent f43dff0 commit 2fc4c2f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

mailer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ party provider:
281281
282282
.. tip::
283283

284-
Some third party mailers, when using the API, support status callback
284+
Some third party mailers, when using the API, support status callbacks
285285
via webhooks. See the :doc:`Webhook documentation </webhook>` for more
286286
details.
287287

notifier.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Service Package DSN
118118

119119
.. tip::
120120

121-
Some third party transports, when using the API, support status callback
121+
Some third party transports, when using the API, support status callbacks
122122
via webhooks. See the :doc:`Webhook documentation </webhook>` for more
123123
details.
124124

webhook.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Webhook
33

44
.. versionadded:: 6.3
55

6-
The Webhook component was introduced in Symfony 6.3
6+
The Webhook component was introduced in Symfony 6.3.
77

88
The Webhook component is used to respond to remote webhooks to trigger actions
99
in your application. This document focuses on using webhooks to listen to remote
@@ -16,17 +16,17 @@ Installation
1616
1717
$ composer require symfony/webhook
1818
19-
Usage in combination with the Mailer component
19+
Usage in Combination with the Mailer Component
2020
----------------------------------------------
2121

2222
When using a third-party mailer, you can use the Webhook component to receive
2323
webhook calls from the third-party mailer.
2424

25-
In this example Mailgun is used with ``'mailer_mailgun'`` as webhook type.
26-
Any type name can be used as long as it's unique. Make sure to use it in the
25+
In this example Mailgun is used with ``'mailer_mailgun'`` as the webhook type.
26+
Any type name can be used as long as it is unique. Make sure to use it in the
2727
routing configuration, the webhook URL and the RemoteEvent consumer.
2828

29-
Install the third party mailer as described in the documentation of the
29+
Install the third-party mailer as described in the documentation of the
3030
:ref:`Mailer component <mailer_3rd_party_transport>`.
3131

3232
The Webhook component routing needs to be defined:
@@ -131,13 +131,13 @@ With this done, you can now add a RemoteEvent consumer to react to the webhooks:
131131
}
132132
}
133133

134-
Usage in combination with the Notifier component
134+
Usage in Combination with the Notifier Component
135135
------------------------------------------------
136136

137137
The usage of the Webhook component when using a third-party transport in
138138
the Notifier is very similar to the usage with the Mailer.
139139

140-
Currently, the following third-party sms transports support webhooks:
140+
Currently, the following third-party SMS transports support webhooks:
141141

142142
============ ==========================================
143143
SMS service Parser service name

0 commit comments

Comments
 (0)