Thanks,
I use a self hosted autoresponder called "AutoResponsePlus." It has worked well for many years and I have a bit more control over user registration than if I used a service. I want to simultaneously sign up my members as subscribers when they register, and terminate them when they reach EOT.
I can subscribe and unsubscribe them by email, using the ARP remote serive. I merely have to format the email correctly, including a username and password. ARP uses the "to" part of the address as the name of the autoresponder campaign, and the "from" part of the address as the name to add to the list.
In my other system (using a different membership script), I name my campaigns to match the item name as sent to PayPal. I would like to do the same here, which means I need to pass the item name and the users email address to the script.
That is why I structured the email including those two items. I can write the mail() function into a short script, if I can get the itemname and useremail variables there as parameters in the url. To wit ...
- Code: Select all
http://mydomain.com?email=%%email%%&item=%%itemname%%
So, do I need to include the question mark and the ampersands when formatting the URL in the api scripting?