mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-20 12:04:18 +08:00
Resolve #787
This commit is contained in:
parent
e35d74be0b
commit
42c1c20a76
1 changed files with 15 additions and 0 deletions
|
@ -92,6 +92,21 @@ class Message implements \JsonSerializable
|
|||
return \property_exists($this, $k) ? $this->$k : null;
|
||||
}
|
||||
|
||||
public function Subject() : string
|
||||
{
|
||||
return $this->sSubject;
|
||||
}
|
||||
|
||||
public function From() : ?\MailSo\Mime\EmailCollection
|
||||
{
|
||||
return $this->oFrom;
|
||||
}
|
||||
|
||||
public function Uid() : int
|
||||
{
|
||||
return $this->Uid;
|
||||
}
|
||||
|
||||
public function Plain() : string
|
||||
{
|
||||
return $this->sPlain;
|
||||
|
|
Loading…
Add table
Reference in a new issue