Ticket system rewrite of ticket import attachment handling, now with application/octet-stream and cid
This commit is contained in:
@@ -83,6 +83,18 @@ final class MailMessagePartData implements MailMessagePartInterface, JsonSeriali
|
||||
return $this->headers[strtolower($name)];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getHeaderValue(string $name): ?string
|
||||
{
|
||||
$header = $this->getHeader($name);
|
||||
if ($header == null) {
|
||||
return (null);
|
||||
}
|
||||
return($header->getValue());
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user