Last active
April 14, 2022 14:10
-
-
Save peterkraume/3070fa29659ff8da2b55c679c350a0ab to your computer and use it in GitHub Desktop.
Get the recipient addresses of all powermail forms in a TYPO3 installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT uid, pid, ExtractValue(pi_flexform, '/T3FlexForms/data/sheet[@index="receiver"]/language/field[@index="settings.flexform.receiver.email"]/value') as value | |
FROM tt_content WHERE list_type LIKE "%powermail%" AND hidden = 0 AND deleted = 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment