Skip to content

Commit 8a6f481

Browse files
reyostallenbergnicolas-grekas
authored andcommitted
Fix spelling of emails
Use correct spelling for email
1 parent 7ea437a commit 8a6f481

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Mime/NotificationEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class NotificationEmail extends TemplatedEmail
3838
'action_url' => null,
3939
'markdown' => false,
4040
'raw' => false,
41-
'footer_text' => 'Notification e-mail sent by Symfony',
41+
'footer_text' => 'Notification email sent by Symfony',
4242
];
4343
private bool $rendered = false;
4444

Tests/Mime/NotificationEmailTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function test()
3535
'markdown' => true,
3636
'raw' => false,
3737
'a' => 'b',
38-
'footer_text' => 'Notification e-mail sent by Symfony',
38+
'footer_text' => 'Notification email sent by Symfony',
3939
], $email->getContext());
4040
}
4141

@@ -58,7 +58,7 @@ public function testSerialize()
5858
'markdown' => false,
5959
'raw' => true,
6060
'a' => 'b',
61-
'footer_text' => 'Notification e-mail sent by Symfony',
61+
'footer_text' => 'Notification email sent by Symfony',
6262
], $email->getContext());
6363

6464
$this->assertSame('@email/example/notification/body.html.twig', $email->getHtmlTemplate());

0 commit comments

Comments
 (0)