PluginProbe
WPIDE – File Manager & Code Editor / 3.5.9
WPIDE – File Manager & Code Editor v3.5.9
3.5.9 3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 All 55 releases
wpide / vendor / symfony / mime / Part / MessagePart.php

MessagePart.php in WPIDE – File Manager & Code Editor 3.5.9, at vendor/symfony/mime/Part/MessagePart.php

76 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Mime\Part;
13
14 use Symfony\Component\Mime\Message;
15 use Symfony\Component\Mime\RawMessage;
16
17 /**
18 * @final
19 *
20 * @author Fabien Potencier <fabien@symfony.com>
21 */
22 class MessagePart extends DataPart
23 {
24 private $message;
25
26 public function __construct(RawMessage $message)
27 {
28 if ($message instanceof Message) {
29 $name = $message->getHeaders()->getHeaderBody('Subject').'.eml';
30 } else {
31 $name = 'email.eml';
32 }
33 parent::__construct('', $name);
34
35 $this->message = $message;
36 }
37
38 public function getMediaType(): string
39 {
40 return 'message';
41 }
42
43 public function getMediaSubtype(): string
44 {
45 return 'rfc822';
46 }
47
48 public function getBody(): string
49 {
50 return $this->message->toString();
51 }
52
53 public function bodyToString(): string
54 {
55 return $this->getBody();
56 }
57
58 public function bodyToIterable(): iterable
59 {
60 return $this->message->toIterable();
61 }
62
63 /**
64 * @return array
65 */
66 public function __sleep()
67 {
68 return ['message'];
69 }
70
71 public function __wakeup()
72 {
73 $this->__construct($this->message);
74 }
75 }
76