Resource icon

Unmaintained Silverpop Integration 0.0.3

No permission to download
Compatible XF 1.x versions
  1. 1.5
Visible branding
No
Please submit any bugs or feature requests here: https://github.com/rvarbanov/XenForo-SilverpopIntegration/issues

This is an add-on for XenForo that allows you to integrate Silverpop

A mysql query that I used to export the xenforo user emails to use on Silverpop:

SELECT u.user_id AS xf_user_id, u.username AS xf_username, u.email AS Email, IF(uo.receive_admin_email = 0, 'No', 'Yes') AS _newswire_subscription
FROM xf_user u
JOIN xf_user_option uo ON u.user_id = uo.user_id
WHERE 1
AND uo.receive_admin_email = 1
AND u.user_state = 'valid'
AND u.is_banned = 0
AND u.email != ''

LIMIT 0, 9999999999999
  • Like
Reactions: THLove
Author
Radi
Downloads
16
Views
561
First release
Last update

Ratings

0.00 star(s) 0 ratings
Top Bottom