ILIAS  release_7 Revision v7.30-3-g800a261c036
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 */
3
8{
12 private $bodyContent;
13
18 public function __construct(string $content, ilMailBodyPurifier $purifier)
19 {
20 $this->bodyContent = $purifier->purify($content);
21 }
22
26 public function getContent() : string
27 {
28 return $this->bodyContent;
29 }
30}
An exception for terminatinating execution or to throw for unit testing.
__construct(string $content, ilMailBodyPurifier $purifier)