Export mailing list to CSV


https://forum.kartris.com/Topic1652.aspx
Print Topic | Close Window

By charlotte - Thu 10 May 2012
Does anyone know how to export the mailing list to a CSV file?
By Neil - Fri 11 May 2012
You could create a Custom Export under Configuration > Database Admin > Data Export, something like this.

SELECT [U_EmailAddress]
FROM [tblKartrisUsers]
WHERE U_ML_SendMail = 'true'
By charlotte - Fri 25 May 2012
Thank you, this is just what I was looking for.