69 $factory = $DIC[
"mail.mime.transport.factory"];
70 self::setDefaultTransport(
$factory->getTransport());
84 "The passed argument must be null or of type 'ilMailMimeTransport', %s given!",
89 self::$defaultTransport = $transport;
94 return self::$defaultTransport;
97 public function Subject(
string $subject,
bool $addPrefix =
false,
string $contextPrefix =
'') : void
99 $this->subject = $this->subjectBuilder->subject($subject, $addPrefix, $contextPrefix);
116 public function To($to) : void
121 $this->sendto[] = $to;
129 public function Cc($cc) : void
142 public function Bcc($bcc) : void
144 if (is_array($bcc)) {
147 $this->abcc[] = $bcc;
204 string $file_type =
'',
205 string $disposition =
'inline',
206 ?
string $display_name = null
208 if ($file_type ===
'') {
209 $file_type =
'application/octet-stream';
213 $this->actype[] = $file_type;
214 $this->adispo[] = $disposition;
215 $this->adisplay[] = $display_name;
226 foreach ($this->aattach as $attachment) {
228 if (isset($this->adisplay[
$i]) && is_string($this->adisplay[$i]) && $this->adisplay[$i] !==
'') {
233 'path' => $attachment,
247 return array_values($this->images);
257 $this->finalBodyAlt =
'';
258 $this->finalBody =
'';
261 if ($DIC->settings()->get(
'mail_send_html', 0)) {
262 $skin = $DIC[
'ilClientIniFile']->readVariable(
'layout',
'skin');
273 $maybeHTML = str_ireplace([
'<br />',
'<br>',
'<br/>'],
"\n", $maybeHTML);
274 $maybeHTML = strip_tags($maybeHTML);
281 if ($this->body ===
'') {
285 if (strip_tags($this->body,
'<b><u><i><a>') === $this->body) {
287 $this->finalBodyAlt = strip_tags($this->body);
291 $this->finalBodyAlt = strip_tags(str_ireplace([
"<br />",
"<br>",
"<br/>"],
"\n", $this->body));
294 $this->finalBody = str_replace(
'{PLACEHOLDER}', $this->body, $this->
getHtmlEnvelope($skin));
299 $bracket_path =
'./Services/Mail/templates/default/tpl.html_mail_template.html';
301 if ($skin !==
'default') {
302 $tplpath =
'./Customizing/global/skin/' . $skin .
'/Services/Mail/tpl.html_mail_template.html';
304 if (file_exists($tplpath)) {
305 $bracket_path =
'./Customizing/global/skin/' . $skin .
'/Services/Mail/tpl.html_mail_template.html';
309 return file_get_contents($bracket_path);
314 $this->gatherImagesFromDirectory(
'./Services/Mail/templates/default/img');
316 if ($skin !==
'default') {
317 $skinDirectory =
'./Customizing/global/skin/' . $skin .
'/Services/Mail/img';
318 if (is_dir($skinDirectory) && is_readable($skinDirectory)) {
319 $this->gatherImagesFromDirectory($skinDirectory,
true);
324 protected function gatherImagesFromDirectory(
string $directory,
bool $clearPrevious =
false) :
void 326 if ($clearPrevious) {
330 foreach (
new RegexIterator(
new DirectoryIterator($directory),
'/\.(jpg|jpeg|gif|svg|png)$/i') as $file) {
332 $cid =
'img/' . $file->getFilename();
334 $this->images[$cid] = [
335 'path' => $file->getPathname(),
337 'name' => $file->getFilename()
349 $transport = self::getDefaultTransport();
354 return $transport->send($this);
buildHtmlInlineImages(string $skin)
removeHTMLTags(string $maybeHTML)
getHtmlEnvelope(string $skin)
Class ilMailMimeSubjectBuilder.
Send(ilMailMimeTransport $transport=null)
Subject(string $subject, bool $addPrefix=false, string $contextPrefix='')
Cc($cc)
Set the cc mail recipient.
static setDefaultTransport(?ilMailMimeTransport $transport)
__construct()
ilMimeMail constructor.
Bcc($bcc)
Set the bcc mail recipient.
static getDefaultTransport()
Interface ilMailMimeTransport.
Interface ilMailMimeTransport.
buildBodyMultiParts(string $skin)
static makeClickable($a_text, $detectGotoLinks=false)
makeClickable In Texten enthaltene URLs und Mail-Adressen klickbar machen
build()
Build the relevant email data.
To($to)
Set the mail recipient.
const MAIL_SUBJECT_PREFIX
From(ilMailMimeSender $sender)
Attach(string $filename, string $file_type='', string $disposition='inline', ?string $display_name=null)
Attach a file to the mail.