View Mobile Optimized Version

We now offer MailChimp email list integration for your Site Store Pro online store customer database. With the new Site Store Pro Mail Chimp Plug-in, your MailChimp.com email list will be automatically updated when a customer registers on the site or updates their customer profile from their account manager.

Mail Chimp provides free list marketing for up to 1000 emails and 6000 messages per month and paid subscription based email list services for larger lists and more frequent mailing requirements. To sign up for a free or paid account, visit http://www.mailchimp.com

Site Store Pro MailChimp Plug-In Specifications:

The MailChimp API code plugs into the Site Store Pro customer account manager module insert and update functions and provides seemless integration between your online store customer database and your MailChimp Email list. The plug-in can be applied to any version of Site Store Pro with a few minutes of file modifications and uploading via FTP.

The following email fields will be created or updated on your MailChimp.com list automatically:

Email Address
First Name
Last Name

If the customer chooses to opt-in during registration or opt-in/opt-out anytime from their account manager, their account will be automatically updated on MailChimp.com.

The MailChimp API feature will be a included in the new Jan 17 release and will be configurable via the web-based admin. However, we are offering it as a stand-alone, manual upgrade to existing installs for customers who use MailChimp as their email list marketing provider.

NOTE: We will upgrade any installation for no charge to include the MailChimp API functionality. If you prefer to add the plug-in to your installation, please follow either the default or advanced instructions below. If you are unsure of which installation method to use, please contact us.

You should export your current online store customer email list from your Site Store Pro admin and import it to your MailChimp List before or right after you install the MailChimp plug-in. The plug-in will only synchonize new emails and when an existing customer updates their opt-in preferences. Your original (past) online store emails must be imported into your MailChimp list unless they have already been imported previously. To export your current opt-in emails from your online store, login to /estore_admin/, click on the 'Reports' tab and then click on 'Export All Customer Emails (CSV)'. The exported CSV file can be easily imported into your MailChimp list from inside your MailChimp Accout Manager (list import functon).


DEFAULT Installaton Instructions:

This installation is for any version of Site Store Pro since March 2008 (Version 2.0803) without the customer registration module customized or modified with non-default features.

1) Download the plug-in zip file and extract it to your local system. We recommend extracting it to your local Site Store Pro installation into the following folder /sitestorepro/myaccount/. When extracting the files from the zip file, overwrite the customer_manager_update_content.asp and customer_manager_insert_content.asp files with the newer versions from the zip file.

2) Open the Mail_Chimp_Config.asp file in Dreamweaver Code View or a text editor such as Notepad and enter/replace the sample credentials with your MailChimp API credentials.

MailChimpAPIKey = "1234567890ABCDEFGHIJKLX-us2"
MailChimpListID = "XXXXXXX123"
MailChimpServerPrefix = "us2"

MailChimpAPIKey = Mail Chimp API Key Is Available Under Account > API Keys and Info In Your MAilChimp.Com Account
MailChimpListID = Mail Chimp UniqueList ID is Available under List Settings > List Settings & Unique ID (At bottom of page)
MailChimpServerPrefix = The mail chimp server prefix value below is the 3 digit value after the - in your API KEY

3. Change the MailChimpAPILink Setting in Mail_Chimp_Config.asp from 0 to 1. i.e MailChimpAPILink = 1

4. Upload the following files from your local system into the following folder on your live webserver /SiteStorepro/Myaccount/

customer_manager_update_content.asp
customer_manager_insert_content.asp
mail_chimp_api_content.asp
mail_chimp_config.asp

You should export your current online store customer email list from your Site Store Pro admin and import it to your MailChimp List before or right after you install the MailChimp plug-in. The plug-in will only synchonize new emails and when an existing customer updates their opt-in preferences. Your original (past) online store emails must be imported into your MailChimp list unless they have already been imported previously. To export your current opt-in emails from your online store, login to /estore_admin/, click on the 'Reports' tab and then click on 'Export All Customer Emails (CSV)'. The exported CSV file can be easily imported into your MailChimp list from inside your MailChimp Accout Manager (list import functon).


SITE STORE PRO CUSTOM (ADVANCED) INSTALLATION NOTICE | INSTRUCTIONS

If you are using a customized install of Site Store Pro where the customer_manager_update.asp and/or customer_manager_insert.asp files were modified from their default configuration or are using a version of Site Store Pro prior to March 2008 (Version 2.0803), please follow the advanced instructions below or contact us for free assistance in applying the MailChimp plug-in to your install.

You can easily add the MailChimp.com Plug-in to ANY Site Store Pro customized installation and ANY version of Site Store Pro by simply adding a few lines of code to the customer_manager_update.asp and customer_manager_insert.asp files in the /SiteStorePro/Myaccount/. The MailChimp Plug-in will not affect any other functionality of your customized install and operates as a stand-alone function.

1) Download the plug-in zip file and extract it to your local system. We recommend extracting it to your local Site Store Pro installation into the following folder /sitestorepro/myaccount/. DO NOT DOWNLOAD THE DEFAULT INSTALL ZIP FILE AND OVERWRITE ANY FILES your /sitestorepro/myaccount/ folder.

2) Open the Mail_Chimp_Config.asp file in Dreamweaver Code View or a text editor such as Notepad and enter/replace the sample credentials with your MailChimp API credentials.

MailChimpAPIKey = "1234567890ABCDEFGHIJKLX-us2"
MailChimpListID = "XXXXXXX123"
MailChimpServerPrefix = "us2"

MailChimpAPIKey = Mail Chimp API Key Is Available Under Account > API Keys and Info In Your MAilChimp.Com Account
MailChimpListID = Mail Chimp UniqueList ID is Available under List Settings > List Settings & Unique ID (At bottom of page)
MailChimpServerPrefix = The mail chimp server prefix value below is the 3 digit value after the - in your API KEY

3. Change the MailChimpAPILink Setting in Mail_Chimp_Config.asp from 0 to 1. i.e MailChimpAPILink = 1

4. Open your existing customer_manager_update_content.asp file in /SiteStorePro/Myaccount./ and add the following lines of code at the bottom of the page directly below the code that reads (approx line 139):

<%
ConfirmEmailsRS.Close()
Set ConfirmEmailsRS = Nothing
%>

<% ' Mail Chimp API List Management %>
<!--#include file="mail_chimp_config.asp" -->
<!--#include file="mail_chimp_api_content.asp" -->
<% ' End Mail Chimp API List Management %>

5.'Save' and 'Close customer_manager_update_content.asp file with the new code snippet added.

6. Open Up your existing customer_manager_insert_content.asp file in /SiteStorePro/Myaccount./ and add the following lines of code at the bottom of the page directly below the code that reads (approx line 191):

<%
CheckEmailsRS.Close()
Set CheckEmailsRS = Nothing
%>

<% ' Mail Chimp API List Management %>
<!--#include file="mail_chimp_config.asp" -->
<!--#include file="mail_chimp_api_content.asp" -->
<% ' End Mail Chimp API List Management %>

7. 'Save' and 'Close' customer_manager_insert_content.asp file with the new code snippet added.

8. Upload the following files from your local system into the following folder on your live webserver /SiteStorepro/Myaccount/

customer_manager_update_content.asp
customer_manager_insert_content.asp
mail_chimp_api_content.asp
mail_chimp_config.asp

You should export your current online store customer email list from your Site Store Pro admin and import it to your MailChimp List before or right after you install the MailChimp plug-in. The plug-in will only synchonize new emails and when an existing customer updates their opt-in preferences. Your original (past) online store emails must be imported into your MailChimp list unless they have already been imported previously. To export your current opt-in emails from your online store, login to /estore_admin/, click on the 'Reports' tab and then click on 'Export All Customer Emails (CSV)'. The exported CSV file can be easily imported into your MailChimp list from inside your MailChimp Accout Manager (list import functon).

Visa Accepted : Buy a copy of SiteStore Pro ASP Shopping Cart Now!MasterCard Accepted! Buy the best ASP Shopping Cart Now!American Express Accepted! Buy The Most Complete ASP ecommerce solution now!Discover Card Accepted! Buy the Most Powerful ASP Shopping Cart On the Market Now!We Accept PayPal! Create Your Own ASP online store now!

Site Store Professional™ is a dreamweaver shopping cart and ecommerce application for Dreamweaver website designers and developers. Dreamweaver® is a registered trademark of the Adobe Corporation. This site is not affiliated with Adobe Dreamweaver or the Adobe Corporation. External Links Disclaimer: SiteStorePro.com does not endorse any of the external website links provided on this site. ASP (Active Server Pages) resources, online store payment processors, programming resources, website hosting links and Dreamweaver development resources are provided for reference purposes only. Companies and/or products listed on this site did not pay an advertising fee for their link placement nor do they directly endorse the Site Store Professional shopping cart. SiteStorePro.com is not responsible for the content or fitness of any 3rd-party product or service that is referenced on the SiteStorePro.com website. All company and product names referenced on this website and/or listed as external resource links are trademarks and/or copyrights of their respective companies.