Log in

View Full Version : vBulletin and Interspire Email Marketer (SendStudio)


citricguy
07-10-2008, 11:59 PM
I'm very new to almost everything I have done below so bare with me.. :) What I'm trying to do is add a confirmed user account to an Interspire Email Marketer list upon successful+confirmed registrations.

1) The code works 60% of the time.
2) I have no idea why.

Any help with reliability/code or anything would be greatly appriciated. I'm very new to this stuff.

I'm triggering the XML post (ala: http://idn.interspire.com/articles/27/1/Interspire-Email-Marketer-XML-API-Documentation/Page1.html#request ) to add new users after they successfully subscribe.

Plugin hook: registration_activate_process

And here is the plugin code i'm using (with some stuff hidden..)


$username = $vbulletin->userinfo[username];
$email= $vbulletin->userinfo[email];
$userid= $vbulletin->userinfo[userid];


$xml = "<xmlrequest>
<username>hidden</username>
<usertoken>hidden</usertoken>
<requesttype>subscribers</requesttype>
<requestmethod>AddSubscriberToList</requestmethod>
<details>
<emailaddress>$email</emailaddress>
<mailinglist>1</mailinglist>
<format>html</format>
<confirmed>yes</confirmed>
<customfields>
<item>
<fieldid>1</fieldid>
<value>$username</value>
</item>
<item>
<fieldid>2</fieldid>
<value>$userid</value>
</item>
</customfields>
</details>
</xmlrequest>
";

$ch = curl_init('http://www.hidden.com/email/xml.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
$result = @curl_exec($ch);
if($result === false) {
echo "Error performing request";
}
else {
$xml_doc = simplexml_load_string($result);
//echo 'Status is ', $xml_doc->status, '<br/>';
if ($xml_doc->status == 'SUCCESS') {
//echo 'Data is ', $xml_doc->data, '<br/>';
} else {
//echo 'Error is ', $xml_doc->errormessage, '<br/>';
}
}

So far it works 60% of the time. All of my tests succeeded in the successful addition of the user into my interspire email marketer list so I know it works, I guess I just want to know if there is something I can do to improve the reliability of the script.

MoT3rror
07-11-2008, 12:26 AM
If the xml is on the same server as your forums, why not use php file functions (http://www.php.net/manual/en/ref.filesystem.php) then curl.

citricguy
07-11-2008, 12:42 AM
They are indeed hosted on the same server, in different directories.

Would the use of php file functions in essence replace the curl stuff, or would I need to modify the XML code too?

MoT3rror
07-11-2008, 12:58 AM
I believe the file functions will just replace the curl functions but I haven't really done much with the file functions and xml. Just the file functions will save a bit of processing compare to using curl that I know.

citricguy
07-11-2008, 01:52 AM
Thank's for the info MoT3rror, I'm going to try to update the code and add some logging code so I can see whats going on. :) Hopefully I can eventually turn this into a mod.

smooth-c
10-13-2008, 11:40 PM
Hey guys, i've been working with citric guy and he did get this working with the following code;

(i've HIDDEN personal bits)

$username = $userinfo['username'];
$email= $userinfo['email'];
$userid= $userinfo['userid'];


$xml = "<xmlrequest>
<username>HIDDEN</username>
<usertoken>HIDDEN</usertoken>
<requesttype>subscribers</requesttype>
<requestmethod>AddSubscriberToList</requestmethod>
<details>
<emailaddress>$email</emailaddress>
<mailinglist>4</mailinglist>
<format>html</format>
<confirmed>yes</confirmed>
<customfields>
<item>
<fieldid>1</fieldid>
<value>$username</value>
</item>
<item>
<fieldid>2</fieldid>
<value>$userid</value>
</item>
</customfields>
</details>
</xmlrequest>
";

$ch = curl_init('http://www.HIDDEN.com/inspire/xml.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
$result = @curl_exec($ch);
if($result === false) {
echo "Error performing request";
}
else {
$xml_doc = simplexml_load_string($result);
//echo 'Status is ', $xml_doc->status, '<br/>';
if ($xml_doc->status == 'SUCCESS') {
//echo 'Data is ', $xml_doc->data, '<br/>';
} else {
//echo 'Error is ', $xml_doc->errormessage, '<br/>';
}
}

Citric has this mod working seamlessly with his forum, we've been working together and i've came across a problem where, when I register a test account - it works instantly, but any further accounts created on my end, aren't added to the inspire/sendstudio database.

Citric has tried this on his end and it's exactly the same.

The only thing different on my end is that I have manual admin approval for all registrations, aswell as email authentication and he only has email authentication.

The hook location currently used, which works for him fine is register_activate_process

Can anyone see why this would happen? Why it would work once from one computer, then not continue?

Thank you very much!

Greg

SEOvB
10-14-2008, 12:02 AM
What happens when you dont use email authentication?

smooth-c
10-14-2008, 01:33 PM
The same :(

leitel
11-04-2008, 01:14 PM
A major factor in choosing a mailer program is its ability to sync with vB. I am currently evaluating 12all from activecampaign. http://www.activecampaign.com/12all/
It has a way to sync directly with vB db tables.
It is not much less in price than Interspire. Would anyone familiar with these products care to share their insights?
Thank you :)

BigSoccer Tech.
12-01-2008, 08:16 PM
Great thread!

I have demod both and interspire is certainly much more elegant. But the reason I haven't pulled the trigger is the integration issue.

--------------- Added 1228171032 at 1228171032 ---------------

solved here i think???

http://www.interspire.com/forum/showpost.php?p=39846&postcount=7

smooth-c
01-26-2009, 08:46 AM
This seems to be working flawlessly except lately i've noticed that it's missed out a few members and not added them to my mailing list.

Any ideas why this would happen? Here's my plugin code;

$username = $userinfo['username'];
$email= $userinfo['email'];
$userid= $userinfo['userid'];


$xml = "<xmlrequest>
<username>admin</username>
<usertoken>XX8410b36f01de9fe7df722ab2864677afddfaXX</usertoken>
<requesttype>subscribers</requesttype>
<requestmethod>AddSubscriberToList</requestmethod>
<details>
<emailaddress>$email</emailaddress>
<mailinglist>1</mailinglist>
<format>html</format>
<confirmed>yes</confirmed>
<customfields>
<item>
<fieldid>12</fieldid>
<value>$username</value>
</item>
<item>
<fieldid>13</fieldid>
<value>$userid</value>
</item>
</customfields>
</details>
</xmlrequest>
";

$ch = curl_init('http://www.maximum-jackson.com/interspire/xml.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
$result = @curl_exec($ch);
if($result === false) {
echo "Error performing request";
}
else {
$xml_doc = simplexml_load_string($result);
//echo 'Status is ', $xml_doc->status, '<br/>';
if ($xml_doc->status == 'SUCCESS') {
//echo 'Data is ', $xml_doc->data, '<br/>';
} else {
//echo 'Error is ', $xml_doc->errormessage, '<br/>';
}
} Any help would be greatly appreciated!

tranceup
01-29-2011, 05:36 AM
Integration is avaible for vbulletin 3.8.6 ?

Thanks

Neutral Singh
05-16-2011, 01:24 AM
is it working for anybody?

citricguy
05-16-2011, 02:19 AM
If anyone want's to start re-writing i'll assist where I can. Are the API's from Interspire still the same as before?

Manoel J?nior
11-01-2011, 02:25 AM
How to integrate with vB4?

Manoel J?nior
11-09-2011, 12:20 PM
Please!!!!!

How to integrate with vB4?