Sounds like you need an integration plugin. This will allow you to have a "single sign-on". Here are the list of integrations already available. If you really need it, you can get helpdesk to write it for you or other 3rd party providers. Lee
aMember does work with SalesForce I opened a ticket with aMember and they gave me the code I need to place into aMember to get it to automatically sends signups to our SalesForce. It works great! Thanks aMember!
Wow I asked the help desk for similar information and got the cold shoulder - I own two licenses of this product - I wonder how many did you have to buy to get such good treatment????
Here is a code example below. Create a file site.inc.php in /amember folder. Then replace '1234567890ABCDF' and 'EDCBA0987654321' to values from <forms> on your SalesForce account. PHP: <?phpif (!defined('INCLUDED_AMEMBER_CONFIG')) die("Direct access to this location is not allowed");setup_plugin_hook('subscription_added', 'salesforce_added');function salesforce_added($member_id, $product_id,$member){ global $db, $config; $product = $db->get_product($product_id);$vars=array("oid" => "1234567890ABCDF","retURL" => "http://yoursite.com/amember/thanks.php","EDCBA0987654321" => "Subscribe Page at YourSite.com","first_name" => $member['name_f'],"last_name" => $member['name_l'],"email" => $member['email'],"submit" => "Submit");$req = '';foreach ($vars as $k => $v) { if (get_magic_quotes_gpc()) $vars[$k] = $v = stripslashes($v); $req .= urlencode($k) . "=" . urlencode ($v) . "&";}get_url("https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8", $req);}?>
What version of salesforce do you need for that code to work? Because I do not have the professional or enterprise vesrion but would love to use this.