altomarketing Posted April 29, 2011 Share Posted April 29, 2011 (edited) For users of http://www.Correton.com Email marketing , which works like mailchimp , aweber or similars but for free. English This is free hook addon to add inside your Correton Email marketing list, every time a new customer arrives Just save this file like corretonsuscribe.php inside yourwhmcs/includes/hooks/ Spanish Este es un hook automatico que agregar tus nuevos clientes automaticamente a tu lista de Correton Email marketing Solo debes completar tu numero API de lista y cada vez que ingrese un cliente a whmcs quedará automáticamente suscripto a tu lista de email marketing dentro de correton.com Solo debes crear un archivo corretonsuscribe.php dentro de TUwhmcs/includes/hooks/ <?php function hook_mail_correton_subscribe($vars) { //API LIST FROM http://www.correton.com/sistema/?listConfig $apikey = "xxxxxx"; $urlcorreton = "http://www.correton.com/sistema/" ; $first_name = $vars['firstname']; $email = $vars['email']; $url = $urlcorreton . "api.php?apikey=" . $apikey . "&action=subscribe&email=" . $email ."&name=" . $first_name; $response = file_get_contents ( $url ); } add_hook("ClientAdd",1,"hook_mail_correton_subscribe"); ?> Edited April 29, 2011 by altomarketing 0 Quote Link to comment Share on other sites More sharing options...
oempire Posted May 2, 2011 Share Posted May 2, 2011 can you make one for mailchimp? 0 Quote Link to comment Share on other sites More sharing options...
altomarketing Posted May 2, 2011 Author Share Posted May 2, 2011 You can download a plugin for mailchimp here 0 Quote Link to comment Share on other sites More sharing options...
ekaram Posted October 1, 2011 Share Posted October 1, 2011 how do you integrate this with aweber? do you have an example? 0 Quote Link to comment Share on other sites More sharing options...
el-abda3.com Posted September 24, 2012 Share Posted September 24, 2012 can you give us example .. with pics 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.