Skip to content
Snippets Groups Projects
Commit 3125a4fe authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Use default adress from localconfig

parent 8b0c74f7
No related branches found
Tags 9.8.6
1 merge request!3New version 4 1
...@@ -166,13 +166,20 @@ class MailTemplateService { ...@@ -166,13 +166,20 @@ class MailTemplateService {
$this->persistenceManager = $this->objectManager->get(PersistenceManager::class); $this->persistenceManager = $this->objectManager->get(PersistenceManager::class);
// use defaultMailFromAddress if it is provided in LocalConfiguration.php; use the sg_mail TS setting as fallback // use defaultMailFromAddress if it is provided in LocalConfiguration.php; use the sg_mail TS setting as fallback
if ($GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress']) { if (!filter_var($GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'], FILTER_VALIDATE_EMAIL)) {
$this->fromAddress = $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress']; $this->fromAddress = $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'];
} else { } else {
$this->fromAddress = $this->tsSettings['mail']['default']['from']; $this->fromAddress = $this->tsSettings['mail']['default']['from'];
if (!filter_var($this->tsSettings['mail']['default']['from'], FILTER_VALIDATE_EMAIL)) {
$this->fromAddress = 'noreply@example.org';
} else {
$this->fromAddress = $this->tsSettings['mail']['default']['from'];
}
} }
$this->mailMessage->setFrom($this->fromAddress); $this->mailMessage->setFrom($this->fromAddress);
$this->bccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['bcc']); $this->bccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['bcc']);
$this->ccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['cc']); $this->ccAddresses = GeneralUtility::trimExplode(',', $this->tsSettings['mail']['default']['cc']);
...@@ -438,8 +445,10 @@ class MailTemplateService { ...@@ -438,8 +445,10 @@ class MailTemplateService {
$mail->setExtensionKey($extensionKey); $mail->setExtensionKey($extensionKey);
$mail->setTemplateName($templateName); $mail->setTemplateName($templateName);
$mail->setLanguage($language); $mail->setLanguage($language);
$mail->setFromAddress($this->fromAddress); $mail->setFromAddress($this->fromAddress);
$mail->setFromName($this->fromName); $mail->setFromName($this->fromName);
$mail->setToAddress($this->toAddresses); $mail->setToAddress($this->toAddresses);
$mail->setMailSubject($subject); $mail->setMailSubject($subject);
$mail->setMailBody($emailBody); $mail->setMailBody($emailBody);
...@@ -645,11 +654,25 @@ class MailTemplateService { ...@@ -645,11 +654,25 @@ class MailTemplateService {
* @param Template $template * @param Template $template
*/ */
private function loadTemplateValues($template) { private function loadTemplateValues($template) {
$this->setFromAddress($template->getFromMail(), $template->getFromName()); $fromName = $template->getFromName();
if ($fromName === '' && $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromName']) {
$fromName = $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromName'];
}
$fromMail = $template->getFromMail();
if (!filter_var($fromMail, FILTER_VALIDATE_EMAIL)) {
$fromMail = $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'];
if (!filter_var($GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'], FILTER_VALIDATE_EMAIL)) {
$fromMail = 'noreply@example.com';
}
}
$this->setFromAddress($fromMail, $fromName);
$this->setCcAddresses($template->getCc()); $this->setCcAddresses($template->getCc());
$this->setBccAddresses($template->getBcc()); $this->setBccAddresses($template->getBcc());
$this->setReplyToAddress($template->getReplyTo()); $this->setReplyToAddress($template->getReplyTo());
$this->setFromName($template->getFromName()); $this->setFromName($fromName);
$this->setReplyToAddress($template->getReplyTo()); $this->setReplyToAddress($template->getReplyTo());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment