ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilMailBody.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
7{
11 private $bodyContent;
16 public function __construct($content, ilMailBodyPurifier $purifier)
17 {
18 $this->bodyContent = $purifier->purify($content);
19 }
23 public function getContent()
24 {
25 return $this->bodyContent;
26 }
27}
An exception for terminatinating execution or to throw for unit testing.
__construct($content, ilMailBodyPurifier $purifier)