Newer
Older
<?php
namespace SGalinski\SgMail\Service;
use SGalinski\SgMail\Domain\Model\Mail;
use SGalinski\SgMail\Domain\Repository\MailRepository;
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 = [];
/**
* @var array to
*/
private $to = [];
/**
* @var string from
*/
private $from;
/**
* @var string $cc
*/
private $cc;
/**
* @var string replyTo
*/
private $replyTo;
/**
* @var string language
*/
private $language = 'de';
/**
* @var boolean ignoreMailQueue
*/
private $ignoreMailQueue = TRUE;
/**
* @var \TYPO3\CMS\Core\Mail\MailMessage $mailMessage
*/
private $mailMessage;
/**
* @var string templateName
*/
private $templateName;
/**
* @var string extensionKey
*/
private $extensionKey;
/**
* @var array content
*/

Torsten Oppermann
committed
private $markers = [];
/**
* @var string subject
*/
private $subject;
/**
* MailTemplateService constructor.
*/
public function __construct() {
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);
$this->mailMessage = $objectManager->get(MailMessage::class);
}
* @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
$registerArray = MailTemplateService::getRegisterArray();
$templateEntry = $registerArray[$this->extensionKey][$this->templateName];
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);
$emailView = $objectManager->get(StandaloneView::class);
$emailView->setTemplatePathAndFilename(
$templateEntry['templatePath'] . $this->language . '.sg_mail.locallang.html'
);

Torsten Oppermann
committed
$emailView->assignMultiple($this->markers);
$emailBody = $emailView->render();
if ($this->ignoreMailQueue) {
$this->mailMessage->setSubject($this->subject);
$this->mailMessage->setBody($emailBody, 'text/html');
$this->mailMessage->send();
$this->addMailToMailQueue($emailBody);
}
/**
* Adds a new mail to the mail queue.
* @param string $emailBody
*/
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->from);
$mail->setToAddress($this->to);
$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) {
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
self::$registerArray = $registerArray;
}
/**
* @param array | string $to
* @return MailTemplateService
*/
public function setTo($to) {
$this->to = $to;
$this->mailMessage->setTo($to);
return $this;
}
/**
* @param array | string $from
* @return MailTemplateService
*/
public function setFrom($from) {
$this->from = $from;
$this->mailMessage->setFrom($from);
return $this;
}
/**
* @param array | string $cc
* @return MailTemplateService
*/
public function setCc($cc) {
$this->cc = $cc;
$this->mailMessage->setCc($cc);
return $this;
}
/**
* @param array | string $replyTo
* @return MailTemplateService
*/
public function setReplyTo($replyTo) {
$this->replyTo = $replyTo;
$this->mailMessage->setReplyTo($replyTo);
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;
}