Can I integrate subscriptions fully into my website without users seeing the final Simplelists landing page?
Yes, you can use server side scripts on your website. For example, using PHP (and cURL), you can contact the Simplelists subscriptions server and process the subscription in the background. Sample PHP code is shown below, but this could equally well be done using ASP or other server side scripts. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,’http://www.simplelists.com/subscribe.php’); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,”name=$Name&email=$Email&list=$List&action=$Subscribe”); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_exec($ch); curl_close($ch); Please note: If your hosting company uses a proxy server for cURL communication then you may have to reference that in fsockopen.