Overrides RawMessage::toIterable
public function toIterable() : iterable { if (null === ($body = $this->getBody())) { $body = new TextPart(''); } (yield $this->getPreparedHeaders() ->toString()); yield from $body->toIterable(); }