Newer
Older
<?php
namespace SGalinski\SgMail\Service;
use SGalinski\SgMail\Domain\Model\Mail;

Torsten Oppermann
committed
use SGalinski\SgMail\Domain\Model\Template;
use SGalinski\SgMail\Domain\Repository\MailRepository;

Torsten Oppermann
committed
use TYPO3\CMS\Core\Exception;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Fluid\View\StandaloneView;

Torsten Oppermann
committed
/***************************************************************
* Copyright notice
*
* (c) sgalinski Internet Services (https://www.sgalinski.de)
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* MailTemplateService
*/
class MailTemplateService {

Torsten Oppermann
committed
private static $registerArray = [];
private $language;
* @var boolean $ignoreMailQueue
*/
private $ignoreMailQueue = TRUE;
/**
* @var \TYPO3\CMS\Core\Mail\MailMessage $mailMessage
*/
private $mailMessage;
/**
*/
private $templateName;
/**
*/
private $extensionKey;
/**

Torsten Oppermann
committed
private $markers = [];
/**
* holds the TypoScript configuration for sg_mail
*
*/
private $tsSettings = [];
/**
* @var array $bccAddresses
*/
private $bccAddresses = [];

Torsten Oppermann
committed
/**
* @var \SGalinski\SgMail\Domain\Repository\TemplateRepository
* @inject
*/
protected $templateRepository = NULL;
/**
* MailTemplateService constructor.
*/
public function __construct() {
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);
$this->mailMessage = $objectManager->get(MailMessage::class);
$typoScriptSettingsService = $objectManager->get(TypoScriptSettingsService::class);
$this->tsSettings = $typoScriptSettingsService->getSettings(0, 'tx_sgmail');
$this->language = $this->tsSettings['templateDefaultLanguage'];
$this->fromAddress = $this->tsSettings['mail']['default']['from'];
$this->mailMessage->setFrom($this->fromAddress);
$this->bccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['bcc']);

Torsten Oppermann
committed
$this->ccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['cc']);
foreach ($this->bccAddresses as $index => $email) {
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
unset($this->bccAddresses[$index]);
}
}
foreach ($this->ccAddresses as $index => $email) {
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
unset($this->ccAddresses[$index]);
}
}
if (sizeof($this->bccAddresses) > 0) {
$this->mailMessage->setBcc($this->bccAddresses);
}
if (sizeof($this->ccAddresses) > 0) {
$this->mailMessage->setCc($this->ccAddresses);
}
* @param string $extension
* @param string $templateName
* @param string $templatePath
* @param string $description

Torsten Oppermann
committed
* @param array $markers

Torsten Oppermann
committed
* @return string

Torsten Oppermann
committed
public static function registerTemplate($extension, $templateName, $templatePath, $description, array $markers) {
MailTemplateService::$registerArray[$extension][$templateName] = [
'templatePath' => $templatePath,

Torsten Oppermann
committed
'description' => $description,

Torsten Oppermann
committed
'marker' => $markers,

Torsten Oppermann
committed
'extension' => $extension,
'templateName' => $templateName

Torsten Oppermann
committed
];
}

Torsten Oppermann
committed
* @return array

Torsten Oppermann
committed
public static function getRegisterArray() {
return self::$registerArray;

Torsten Oppermann
committed
* Send the Email
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);

Torsten Oppermann
committed
/** @var StandaloneView $emailView */
$emailView = $objectManager->get(StandaloneView::class);

Torsten Oppermann
committed
/** @var Template $template */
$template = $this->templateRepository->findTemplate(
$this->extensionKey, $this->templateName, $this->language
)->getFirst();
$emailView->setTemplateSource($template->getContent());

Torsten Oppermann
committed
$emailView->assignMultiple($this->markers);
$emailBody = $emailView->render();

Torsten Oppermann
committed
// insert <br /> tags, but replace every instance of three or more successive breaks with just two.
$emailBody = nl2br($emailBody);
$emailBody = preg_replace('/(<br[\s]?[\/]?>[\s]*){3,}/', '<br /><br />', $emailBody);

Torsten Oppermann
committed
$this->mailMessage->setSubject($template->getSubject());

Torsten Oppermann
committed
$this->mailMessage->setBody($emailBody, 'text/html');
$this->addMailToMailQueue($emailBody);
}
/**
* Adds a new mail to the mail queue.
* @param int $priority
* @param int $pid
*/
private function addMailToMailQueue($emailBody, $priority = Mail::PRIORITY_LOWEST, $pid = 0) {
/** @var ObjectManager $objectManager */
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);
if ($pid <= 0 && isset($GLOBALS['TSFE'])) {
$pid = (int) $GLOBALS['TSFE']->id;
}
$mail = $objectManager->get(Mail::class);
$mail->setPid($pid);
$mail->setFromAddress($this->fromAddress);
$mail->setToAddress($this->toAddresses);
$mail->setMailSubject($this->subject);
$mail->setMailBody($emailBody);
$mail->setPriority($priority);
$mailRepository = $objectManager->get(MailRepository::class);
$mailRepository->add($mail);
/**
* @param array $registerArray
* @return MailTemplateService
*/
public static function setRegisterArray(array $registerArray) {
self::$registerArray = $registerArray;
}
/**
* @return MailTemplateService
*/
public function setToAddresses($toAddresses) {
$this->toAddresses = $toAddresses;
$this->mailMessage->setTo($toAddresses);
* @return MailTemplateService
*/
public function setFromAddress($fromAddress) {
$this->fromAddress = $fromAddress;
$this->mailMessage->setFrom($fromAddress);
* @return MailTemplateService
*/
public function setCcAddresses($ccAddresses) {
$this->ccAddresses[] = $ccAddresses;
$this->mailMessage->setCc($this->ccAddresses);
* @param array|string $replyToAddress
* @return MailTemplateService
*/
public function setReplyToAddress($replyToAddress) {
$this->replyToAddress = $replyToAddress;
$this->mailMessage->setReplyTo($replyToAddress);
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
return $this;
}
/**
* @param string $language
* @return MailTemplateService
*/
public function setLanguage($language) {
$this->language = $language;
return $this;
}
/**
* @param boolean $ignoreMailQueue
* @return MailTemplateService
*/
public function setIgnoreMailQueue($ignoreMailQueue) {
$this->ignoreMailQueue = $ignoreMailQueue;
return $this;
}
/**
* @param string $templateName
* @return MailTemplateService
*/
public function setTemplateName($templateName) {
$this->templateName = $templateName;
return $this;
}
/**
* @param string $extensionKey
* @return MailTemplateService
*/
public function setExtensionKey($extensionKey) {
$this->extensionKey = $extensionKey;
return $this;
}
/**
* @param string $subject
* @return MailTemplateService
*/
public function setSubject($subject) {
$this->subject = $subject;
$this->mailMessage->setSubject($subject);
return $this;
}

Torsten Oppermann
committed
* @param array $markers
* @return MailTemplateService
*/

Torsten Oppermann
committed
public function setMarkers(array $markers) {
$this->markers = $markers;
return $this;
}
/**
* @param array $bccAddresses
* @return MailTemplateService
*/
public function setBccAddresses(array $bccAddresses) {
$this->bccAddresses[] = $bccAddresses;
$this->mailMessage->setBcc($this->bccAddresses);