We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 575a59b commit 07c68d5Copy full SHA for 07c68d5
Event/MessageEvent.php
@@ -16,7 +16,7 @@
16
use Symfony\Component\Mime\RawMessage;
17
18
/**
19
- * Allows the transformation of a Message and the SMTP Envelope before the email is sent.
+ * Allows the transformation of a Message and the Envelope before the email is sent.
20
*
21
* @author Fabien Potencier <fabien@symfony.com>
22
*/
@@ -45,12 +45,12 @@ public function setMessage(RawMessage $message): void
45
$this->message = $message;
46
}
47
48
- public function getEnvelope(): SmtpEnvelope
+ public function getEnvelope(): Envelope
49
{
50
return $this->envelope;
51
52
53
- public function setEnvelope(SmtpEnvelope $envelope): void
+ public function setEnvelope(Envelope $envelope): void
54
55
$this->envelope = $envelope;
56
0 commit comments