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 3137f73 commit 81f0ff4Copy full SHA for 81f0ff4
src/InboundEmail.php
@@ -64,6 +64,11 @@ public function html(): ?string
64
{
65
return $this->message()->getHtmlContent();
66
}
67
+
68
+ public function headerValue($headerName): string
69
+ {
70
+ return $this->message()->getHeaderValue($headerName, null);
71
+ }
72
73
public function subject(): ?string
74
@@ -171,9 +176,4 @@ public function isValid(): bool
171
176
172
177
return $this->from() !== '' && ($this->text() !== '' || $this->html() !== '');
173
178
174
-
175
- public function headerValue($headerName): string
- {
- return $this->message()->getHeaderValue($headerName, null);
- }
179
0 commit comments