direct_mail icon indicating copy to clipboard operation
direct_mail copied to clipboard

Download Recipients Lists as CSV

Open studiokaloa opened this issue 6 years ago • 0 comments

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"];

studiokaloa avatar Jun 21 '18 22:06 studiokaloa