Skip to content

Instantly share code, notes, and snippets.

@peterkraume
Last active April 14, 2022 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save peterkraume/3070fa29659ff8da2b55c679c350a0ab to your computer and use it in GitHub Desktop.
Save peterkraume/3070fa29659ff8da2b55c679c350a0ab to your computer and use it in GitHub Desktop.
Get the recipient addresses of all powermail forms in a TYPO3 installation
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