Dakis
Well-known member
Ok so I have an external script that I use to send out my newsletters (sendy.co), and the problem I'm facing is I have to manually export my userlist from the forum and import it to the newsletter system.
I have come up with this query so far:
that returns the userlist together with this custom field and its values.
So far so good, but what I need is a userlist that will return not just the username but also the gender of each user.
And as a second step to make it even more complicated, to return also the value of the "receive site mailings" option.
Any ideas anyone?
I have come up with this query so far:
Code:
SELECT u.username, ufv.field_value
FROM xf_user_field_value AS ufv
LEFT JOIN xf_user AS u ON (u.user_id = ufv.user_id)
WHERE ufv.field_id = 'ggf_s_newsletter';
that returns the userlist together with this custom field and its values.
So far so good, but what I need is a userlist that will return not just the username but also the gender of each user.
And as a second step to make it even more complicated, to return also the value of the "receive site mailings" option.
Any ideas anyone?