123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
-
-
-
- class Swift_Mime_EmbeddedFile extends Swift_Mime_Attachment
- {
-
-
- public function __construct(Swift_Mime_HeaderSet $headers, Swift_Mime_ContentEncoder $encoder, Swift_KeyCache $cache, Swift_Mime_Grammar $grammar, $mimeTypes = array())
- {
- parent::__construct($headers, $encoder, $cache, $grammar, $mimeTypes);
- $this->setDisposition('inline');
- $this->setId($this->getId());
- }
-
-
-
- public function getNestingLevel()
- {
- return self::LEVEL_RELATED;
- }
- }
|