Overrides AbstractPart::bodyToIterable
public function bodyToIterable() : iterable { $parts = $this->getParts(); foreach ($parts as $part) { (yield '--' . $this->getBoundary() . "\r\n"); yield from $part->toIterable(); (yield "\r\n"); } (yield '--' . $this->getBoundary() . "--\r\n"); }