Get the priority of this message.
The returned value is an integer where 1 is the highest priority and 5 is the lowest.
public function getPriority() : int { [ $priority, ] = sscanf($this->getHeaders() ->getHeaderBody('X-Priority') ?? '', '%[1-5]'); return $priority ?? 3; }