rebuild read out email
This commit is contained in:
@@ -4,6 +4,7 @@ require 'mailhandling.php';
|
||||
|
||||
class Mail extends Mailhandling {
|
||||
// protected $mbox = null;
|
||||
protected $folder = '';
|
||||
protected $uid = 0;
|
||||
|
||||
public function __construct(?string $templateName = null) {
|
||||
@@ -12,7 +13,9 @@ class Mail extends Mailhandling {
|
||||
$this->templateName = 'imaperror';
|
||||
return;
|
||||
}
|
||||
$this->uid = $this->getUriParams()['uid'];
|
||||
$params = $this->getUriParams();
|
||||
$this->uid = $params['uid'];
|
||||
$this->folder = $params['folder'];
|
||||
$this->content['uid'] = $this->uid;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user