/home/techb158/immovalet.com/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime
NameSizeModeActions
ContentEncoder/-0755rm
HeaderEncoder/-0755rm
Headers/-0755rm
Attachment.php35750644editdlrm
CharsetObserver.php5090644editdlrm
ContentEncoder.php9690644editdlrm
EmbeddedFile.php10540644editdlrm
EncodingObserver.php5160644editdlrm
Header.php19970644editdlrm
HeaderEncoder.php4880644editdlrm
IdGenerator.php10620644editdlrm
MimePart.php50620644editdlrm
SimpleHeaderFactory.php52970644editdlrm
SimpleHeaderSet.php103430644editdlrm
SimpleMessage.php164250644editdlrm
SimpleMimeEntity.php228210644editdlrm
Edit: /home/techb158/immovalet.com/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php (3575B)
setDisposition('attachment'); $this->setContentType('application/octet-stream'); $this->mimeTypes = $mimeTypes; } /** * Get the nesting level used for this attachment. * * Always returns {@link LEVEL_MIXED}. * * @return int */ public function getNestingLevel() { return self::LEVEL_MIXED; } /** * Get the Content-Disposition of this attachment. * * By default attachments have a disposition of "attachment". * * @return string */ public function getDisposition() { return $this->getHeaderFieldModel('Content-Disposition'); } /** * Set the Content-Disposition of this attachment. * * @param string $disposition * * @return $this */ public function setDisposition($disposition) { if (!$this->setHeaderFieldModel('Content-Disposition', $disposition)) { $this->getHeaders()->addParameterizedHeader('Content-Disposition', $disposition); } return $this; } /** * Get the filename of this attachment when downloaded. * * @return string */ public function getFilename() { return $this->getHeaderParameter('Content-Disposition', 'filename'); } /** * Set the filename of this attachment. * * @param string $filename * * @return $this */ public function setFilename($filename) { $this->setHeaderParameter('Content-Disposition', 'filename', $filename); $this->setHeaderParameter('Content-Type', 'name', $filename); return $this; } /** * Get the file size of this attachment. * * @return int */ public function getSize() { return $this->getHeaderParameter('Content-Disposition', 'size'); } /** * Set the file size of this attachment. * * @param int $size * * @return $this */ public function setSize($size) { $this->setHeaderParameter('Content-Disposition', 'size', $size); return $this; } /** * Set the file that this attachment is for. * * @param string $contentType optional * * @return $this */ public function setFile(Swift_FileStream $file, $contentType = null) { $this->setFilename(basename($file->getPath())); $this->setBody($file, $contentType); if (!isset($contentType)) { $extension = strtolower(substr($file->getPath(), strrpos($file->getPath(), '.') + 1)); if (\array_key_exists($extension, $this->mimeTypes)) { $this->setContentType($this->mimeTypes[$extension]); } } return $this; } }