mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03: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;
|
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
|
public function Plain() : string
|
||||||
{
|
{
|
||||||
return $this->sPlain;
|
return $this->sPlain;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue