Export of all receivers of a mail directly from campaign report
I often send to more than one list at a time, and if I want to send again to those who hasn't opened - following this routine here https://sendy.co/forum/discussion/123/send-email-to-the-users-who-didnt-opened-the-emails-/p1 - it's very time consuming.
I have to go to each list and export active subscribers.
Would it be possible to add an Export function to the total number of subscribers, spanning over all the lists I've mailed to? E.g. where it says "Sent on Fri, Sep 20, 2013, 03:12PM to 1,449 subscribers" then the Export function?
This discussion has been closed.
Comments
Hi @BrittMalka,
You can't do that at this time. But you can do this directly in your MySQL database via something like phpmyadmin.
SELECT name, email FROM subscribers WHERE list IN ('to_send_lists') AND bounced = 0 AND complaint = 0 AND confirmed = 1
(whereto_send_lists
is what you copied in step 1)Best regards,
Ben