ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailBody.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  private readonly string $bodyContent;
27 
28  public function __construct(string $content, ilMailBodyPurifier $purifier)
29  {
30  $this->bodyContent = $purifier->purify($content);
31  }
32 
33  public function getContent(): string
34  {
35  return $this->bodyContent;
36  }
37 }
__construct(string $content, ilMailBodyPurifier $purifier)
readonly string $bodyContent