function mgm_autoresponseplus()
 {
     // parent
     parent::__construct();
     // set code
     $this->code = __CLASS__;
     // set name
     $this->name = 'AutoResponse Plus';
     // desc
     $this->description = __('AutoResponse Plus Desc', 'mgm');
     // set path
     parent::set_tmpl_path();
     // read settings
     $this->read();
 }
 function mgm_aweber()
 {
     // parent
     parent::__construct();
     // set code
     $this->code = __CLASS__;
     // set name
     $this->name = 'Aweber';
     // desc
     $this->description = __('Aweber Desc', 'mgm');
     // set path
     parent::set_tmpl_path();
     // read settings
     $this->read();
     // endpoints, not saved
     $this->set_endpoint('subscribe', 'http://www.aweber.com/scripts/addlead.pl');
     //subscribe
     $this->set_endpoint('unsubscribe', 'http://www.aweber.com/scripts/removelead.pl');
     //unsubscribe, dummy
 }
 function mgm_constantcontact()
 {
     // parent
     parent::__construct();
     // set code
     $this->code = __CLASS__;
     // set name
     $this->name = 'Constant Contact';
     // desc
     $this->description = __('Constant Contact Desc', 'mgm');
     // set path
     parent::set_tmpl_path();
     // read settings
     $this->read();
     // endpoints, not saved
     $this->set_endpoint('subscribe', 'https://api.constantcontact.com/ws/customers/[user_name]/contacts');
     //subscribe
     $this->set_endpoint('unsubscribe', 'https://api.constantcontact.com/ws/customers/[user_name]/contacts');
     //unsubscribe
 }
 function mgm_icontact()
 {
     // parent
     parent::__construct();
     // set code
     $this->code = __CLASS__;
     // set name
     $this->name = 'iContact';
     // desc
     $this->description = __('iContact Desc.', 'mgm');
     // set path
     parent::set_tmpl_path();
     // read settings
     $this->read();
     // endpoints, not saved
     $this->set_endpoint('subscribe', 'https://app.icontact.com/icp/signup.php');
     // subscribe
     $this->set_endpoint('unsubscribe', 'https://app.icontact.com/icp/unsubscribe.php');
     // unsubscribe
 }