-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dumazeau
committed
Jul 19, 2022
1 parent
afa7db2
commit 669c9c5
Showing
2 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ public function testSendEmailMinimumConfiguration(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|
@@ -84,7 +84,7 @@ public function testSendEmailWithReturnPath(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|
@@ -110,7 +110,7 @@ public function testSendEmailWithBcc(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|
@@ -137,7 +137,7 @@ public function testSendEmailWithYopmailEnabled(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|
@@ -164,7 +164,7 @@ public function testSendEmailWithSubjectPrefix(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|
@@ -185,7 +185,7 @@ public function testSendEmailWithFooter(): void | |
$this->mailer->send($email); | ||
|
||
$this->assertEmailCount(1, null, false); | ||
$email = $this->getMailerMessages()[0]; | ||
$email = $this->getMailerMessages(null, false)[0]; | ||
|
||
self::assertEmailTo('[email protected]', $email); | ||
self::assertEmailFrom('[email protected]', $email); | ||
|