direct_mail
direct_mail copied to clipboard
Download Recipients Lists as CSV
It would be really nice if $fieldList field of the RecipientList class is configurable by TSConfig rather than being hardcoded. It allows to choose which fields to include in the CSV Download without fork
Add a new TSConfig options :
mod.web_modules.dmail.downloadCSVFields=uid,name,email,myCustomField1,myCustomField2,…
Add in function init() of Classes/modules/RecipientLis.php :
if( isset( $this->params["downloadCSVFields"] ) ) $this->fieldList = $this->params["downloadCSVFields"];