Manual integration

R.Gen landing page include popular email marketing services integration with subscription forms. It is very easy to setup with landing pages subscription forms.

All settings available in form-data/config.php file. Open config.php file and follow instructions below.

Mail Chimp settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “mailchimp”; and than set API key and List ID of mail chimp
$MC_API_KEY =  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$MC_LIST_ID =  "xxxxxxxxx";

You can also find video on youtube which explain how to find API key and List ID


 

Campaign Monitor Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “campaignmonitor”; and than set API key and List ID of campaign monitor
$CM_API_KEY =  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$CM_LIST_ID =  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";

 


 

GetResponse Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “getresponse”; and than set other settings of GetResponse
$GR_API_KEY       =  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$GR_CAMPAIGN_NAME =  "xxxxxxxxxx";

 


 

AWeber Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “aweber”; and than set other settings of aweber
$AW_AUTH_CODE =  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$AW_LIST_NAME =  "xxxxxxxxxx";

 


 

iContact Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “icontact”; and than set other settings of iContact
$IC_APP_ID    = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$IC_API_USER  = "xxxxxxxxxxxxxxxxxxx";
$IC_API_PWD   = "xxxxxxxxxxxxxxxxxxx";
$IC_LIST_NAME = "xxxxxxxxxxxxxxxxxxx";

 


 

Constant Contact Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “constantcontact”; and than set other settings of constant contact
$CC_API_KEY      = "xxxxxxxxxxxxxxxxxxxxxxx";
$CC_ACCESS_TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$CC_LIST_NAME    = "xxxxxxxxxxx";

 


 

Text File Settings

  • Open File =>  form-data/config.php
  • Set => $STORE_MODE = “file”; 
$STORE_FILE = "subscription.txt";
  • After $_SERVER[“DOCUMENT_ROOT”].” , write the path to your .txt to save the emails of the subscribers

 

Related Articles