You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typo3 v10, Powermail V8.5.1 (will be upgraded soon, i promise ;))
Is it possible to use a field multiple times to get more than one receiver? The Predefined receivers example works so far, but i was wondering if its possible to do something like this:
emailA = CASE
emailA {
key.data = GP:tx_powermail_pi1|field|fieldA
12345678=TEXT
[email protected]
default = TEXT
default.value = [email protected]
}
#now checking the same field again:
emailB = CASE
emailB {
key.data = GP:tx_powermail_pi1|field|fieldA
key.stdWrap.crop = 3 | | 0
123 = TEXT
123.value = [email protected]
default = TEXT
default.value = [email protected]
}
# now make a list of mails to be sent
plugin.tx_powermail.settings.setup.receiver.predefinedReceiver.receivers1.email = {emailA.value},{emailB.value}
The code is just a mockup. But would it be possible?
Regards
The text was updated successfully, but these errors were encountered:
email can be a comma-separated list of several e-mail addresses. And it can be any cObject. I.e. you only have to assemble the list correctly (i.e. with commas).
Your emailA and emailB Yare any cObjects. You can copy or reference these according to the normal TypoScript functionality to sub-objects within a cObject in email.
temp.emailA = TEXT
temp.emailA.value = [email protected]
plugin.tx_powermail.settings.setup.receiver.predefinedReceiver.receivers1.email = COA
plugin.tx_powermail.settings.setup.receiver.predefinedReceiver.receivers1.email {
10 < temp.emailA
}
Hello!
Typo3 v10, Powermail V8.5.1 (will be upgraded soon, i promise ;))
Is it possible to use a field multiple times to get more than one receiver? The Predefined receivers example works so far, but i was wondering if its possible to do something like this:
The code is just a mockup. But would it be possible?
Regards
The text was updated successfully, but these errors were encountered: