Sending Mail now dynamically creates packet name, size and mtime

This commit is contained in:
2023-07-14 20:03:09 +10:00
parent 28101237e8
commit 7bf957df3a
5 changed files with 35 additions and 13 deletions

View File

@@ -215,6 +215,11 @@ class Message extends FTNBase
$this->unknown = collect();
}
// Fix for a call to pluck('date') (which is resolved via __get()), but it returns false.
public function __isset($key) {
return (bool)$this->{$key};
}
public function __get($key)
{
switch ($key) {