You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Hi,
I tried searching in the manual and the forums but can't seem to find a way to export my current subscriber email list. I preferably need something I can use to import to Constant Contact.
Any help will be appreciated!
Offline
I've tried to do this but unable to download the file from "save link as" from the download page. Instead we get a 404 page
Offline
Hello Nick,
Thanks for chiming in on this! The file seems to only include all emails but not "subscribed" list emails. Is there another way for us to export the "subscribed" email list for website updates etc.?
Thanks Again ![]()
Offline
The core_guestsub table holds guest accounts which have maillist subscriptions. If there's an entry there, they are a subscriber. Are you looking also for subscribed user accounts?
Offline
We are also looking for user account subscriptions to export for MailChimp.
Thanks ![]()
Offline
I apologize for misspeaking. I later V8 versions the subscriptions were moved entirely to that subscriber table. To pull all user accounts, you could execute this in Raw DB Admin:
SELECT id FROM core_users
And request CSV output. There will be duplicates between this list and the list of subscribers pulled from core_guestsub.
Offline
Thanks Nick ![]()
Offline
Hello Nick,
We have tried SELECT id FROM core_users but the only emails we need are for those who have signed up for email subscriptions that have user accounts. How would an SQL Statement look to segregate those emails for export?
Thanks ![]()
Offline
Thanks Nick,
This works perfectly and I was able to modify it to include fname and lname in the output as to create merge tags.....
SELECT id, fname, lname FROM core_users WHERE subscriptions<>''
Now if we want to delete email bounces and unsubscribes that are maintained in MailChimp how would we structure a statement to do so? For example, we use MailChimp to manage the exported lists for analytics but need to sync the corrections with our CCP database where customers sign up initially.
I started with this but not sure if I have the proper format...
DELETE FROM core_guestsub
WHERE id='name@email.com, name2@email.com';
The database appeared to acknowledge what I wanted to do but didn't delete the two example emails from the database.
Also, what would it look like if we wanted to simply unsubscribe a "core_user" from "subscriptions" but not delete their email or anything else?
Thanks again ![]()
Offline
To delete a guest subscriber:
DELETE FROM core_guestsub WHERE id='name@email.com'
To delete two guest subscribers:
DELETE FROM core_guestsub WHERE id='name@email.com' OR id='name2@email.com'
To remove subscriptions for a single user account:
UPDATE core_users SET subscriptions='' WHERE id='name@email.com'
To remove subscriptions for two user accounts:
UPDATE core_users SET subscriptions='' WHERE id='name@email.com' OR id='name2@email.com'
You can pretty much take it from there...
Offline