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
88The Webhook component is used to respond to remote webhooks to trigger actions
99in 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
2222When using a third-party mailer, you can use the Webhook component to receive
2323webhook 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
2727routing 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
3232The 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
137137The usage of the Webhook component when using a third-party transport in
138138the 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============ ==========================================
143143SMS service Parser service name
0 commit comments