Skip to content

Commit 0853bee

Browse files
minor symfony#52091 [Mailer][Brevo][Sendinblue] Fix typo (OskarStark)
This PR was merged into the 6.4 branch. Discussion ---------- [Mailer][Brevo][Sendinblue] Fix typo | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | -- | License | MIT Commits ------- 87bdbc3 [Mailer][Brevo][Sendinblue] Fix typo
2 parents 26f6adb + 87bdbc3 commit 0853bee

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/Symfony/Component/Mailer/Bridge/Brevo/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Brevo Bridge
22
============
33

44
Provides Brevo integration for Symfony Mailer.
5-
This was added uppon Sendinblue's rebranding to Brevo.
5+
This was added upon Sendinblue's rebranding to Brevo.
66

77
Configuration example:
88

@@ -15,13 +15,13 @@ MAILER_DSN=brevo+api://KEY@default
1515
```
1616

1717
where:
18-
- `KEY` is your Brevo API Key
18+
- `KEY` is your Brevo API Key
1919

2020
With API, you can use custom headers.
2121

2222
```php
2323
$params = ['param1' => 'foo', 'param2' => 'bar'];
24-
$json = json_encode(['"custom_header_1' => 'custom_value_1']);
24+
$json = json_encode(['custom_header_1' => 'custom_value_1']);
2525

2626
$email = new Email();
2727
$email
@@ -36,21 +36,21 @@ $email
3636
;
3737
```
3838

39-
This example allow you to set :
39+
This example allow you to set:
4040

41-
* templateId
42-
* params
43-
* tags
44-
* headers
45-
* sender.ip
46-
* X-Mailin-Custom
41+
* templateId
42+
* params
43+
* tags
44+
* headers
45+
* sender.ip
46+
* X-Mailin-Custom
4747

48-
For more informations, you can refer to [Brevo API documentation](https://developers.brevo.com/reference/sendtransacemail).
48+
For more information, you can refer to [Brevo API documentation](https://developers.brevo.com/reference/sendtransacemail).
4949

5050
Resources
5151
---------
5252

53-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
54-
* [Report issues](https://github.com/symfony/symfony/issues) and
55-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
56-
in the [main Symfony repository](https://github.com/symfony/symfony)
53+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
54+
* [Report issues](https://github.com/symfony/symfony/issues) and
55+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
56+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Sendinblue/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ With API, you can use custom headers.
2020

2121
```php
2222
$params = ['param1' => 'foo', 'param2' => 'bar'];
23-
$json = json_encode(['"custom_header_1' => 'custom_value_1']);
23+
$json = json_encode(['custom_header_1' => 'custom_value_1']);
2424

2525
$email = new Email();
2626
$email
@@ -35,7 +35,7 @@ $email
3535
;
3636
```
3737

38-
This example allow you to set :
38+
This example allow you to set:
3939

4040
* templateId
4141
* params
@@ -44,7 +44,7 @@ This example allow you to set :
4444
* sender.ip
4545
* X-Mailin-Custom
4646

47-
For more informations, you can refer to [Sendinblue API documentation](https://developers.sendinblue.com/reference#sendtransacemail).
47+
For more information, you can refer to [Sendinblue API documentation](https://developers.sendinblue.com/reference#sendtransacemail).
4848

4949
Resources
5050
---------

0 commit comments

Comments
 (0)