anurajrv Chevereto Member Apr 7, 2017 #1 I need to export email id's of my users for sending bulk emails. How can i do it?
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Apr 7, 2017 #2 Run a MySQL query: Code: SELECT user_email FROM chv_users WHERE user_email IS NOT NULL AND user_newsletter_subscribe = 1; That will get you all the emails. Cheers, Rodolfo.
Run a MySQL query: Code: SELECT user_email FROM chv_users WHERE user_email IS NOT NULL AND user_newsletter_subscribe = 1; That will get you all the emails. Cheers, Rodolfo.
Focker 💖 Chevereto Fan Aug 15, 2017 #3 We can't email directly from our admin dashboard correct? We have to use an external email service?
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Aug 15, 2017 #4 Focker said: We can't email directly from our admin dashboard correct? We have to use an external email service? Click to expand... External.
Focker said: We can't email directly from our admin dashboard correct? We have to use an external email service? Click to expand... External.
Focker 💖 Chevereto Fan Aug 15, 2017 #5 One more question about this just for my knowledge. In the user setting there is - Newsletter Send me emails with news about websitename. How does this work then?
One more question about this just for my knowledge. In the user setting there is - Newsletter Send me emails with news about websitename. How does this work then?
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Aug 15, 2017 #6 That allows you to detect which users want to get your newsletter. You don't want to send emails to everybody, your complain rate could be huge.
That allows you to detect which users want to get your newsletter. You don't want to send emails to everybody, your complain rate could be huge.
Focker 💖 Chevereto Fan Aug 15, 2017 #7 Rodolfo said: You don't want to send emails to everybody Click to expand... True.