ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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  {
51  return $this->mail_subject;
52  }
53 
57  public function setMailSubject($mail_subject)
58  {
59  $this->mail_subject = $mail_subject;
60  }
61 }