ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilMailCronOrphanedMailsFolderMailObject.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3
9{
13 protected $mail_id = 0;
14
18 protected $mail_subject = '';
19
25 {
26 $this->setMailId($mail_id);
28 }
29
33 public function getMailId()
34 {
35 return $this->mail_id;
36 }
37
41 public function setMailId($mail_id)
42 {
43 $this->mail_id = $mail_id;
44 }
45
49 public function getMailSubject()
50 {
52 }
53
58 {
59 $this->mail_subject = $mail_subject;
60 }
61}