PDA

View Full Version : Integrating vbulletin Registrations with Constant Contact Mailing List


induslady
11-25-2009, 12:23 PM
Hello,

I would like to code a API that integrates vBulletin Registrations with Constant Contact Mailing List.
This is what the API needs to do:

When a user register in my vb forums, their name and email id has to be automatically updates in a Mailing List in Constant Contact.

Any one tried this with success.

Thanks in advance for the responses.

Brandon_R
11-25-2009, 01:36 PM
You could create a hook in the register_addember_process or *_*_complete hooks to insert the Name and email into the database considering it using a mysql database

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "mailinglist (id, name, email) VALUES ($vbulletin->GPC['username'], $vbulletin->GPC['email'])");

induslady
11-25-2009, 03:09 PM
Hello,
Thanks for your response.

What am looking for is when a user registers in my forum his contact details has to be added into the constant contact mailing list.

Can you tell me how this plugin / query will help me achieve the same.

Can you tell me a little in detail so that could understand your logic.

Thanks once again.

BTTF.com
01-03-2010, 01:35 AM
I'm looking for this too.

Regs
01-03-2010, 02:43 AM
Check out the plugin created for MailChimp and perhaps modify it for your needs (search google or go to the mailchimp site)