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 eca4e15 commit d1cb5e1Copy full SHA for d1cb5e1
src/Header.php
@@ -147,6 +147,8 @@ protected function parse(){
147
}
148
if (property_exists($header, 'message_id')) {
149
$this->attributes["message_id"] = str_replace(['<', '>'], '', $header->message_id);
150
+ } else if (property_exists($header, 'message-id')) {
151
+ $this->attributes["message_id"] = str_replace(['<', '>'], '', $header->{'message-id'});
152
153
154
$this->parseDate($header);
0 commit comments