Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
16555c0f
Commit
16555c0f
authored
May 04, 2018
by
Carsten Rose
Browse files
Bug #5913 sendmail: reports that there is no 'TO' given - but it is.
parent
af621f5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/report/SendMail.php
View file @
16555c0f
...
...
@@ -52,7 +52,7 @@ class SendMail {
$redirectAllMail
=
$this
->
store
->
getVar
(
SYSTEM_REDIRECT_ALL_MAIL_TO
,
STORE_SYSTEM
);
if
(
$redirectAllMail
!==
false
)
{
if
(
!
empty
(
$redirectAllMail
)
)
{
$addBody
=
"All QFQ outgoing mails are catched and redirected to you."
.
PHP_EOL
.
"Original receiver:"
.
PHP_EOL
;
$addBody
.
=
'TO: '
.
$mailConfig
[
SENDMAIL_TOKEN_RECEIVER
]
.
PHP_EOL
;
$addBody
.
=
'CC: '
.
$mailConfig
[
SENDMAIL_TOKEN_RECEIVER_CC
]
.
PHP_EOL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment