Version Notes
1.1.35
--------
- Fixed typo in modman
- Firstname sent to MailChimp if customer name is available.
- Lastname sent to MailChimp if customer name is available.
- Fixed problem when displaying customer groups.
- Added storeId for unsubscription.
- Added check to see if first and last name are enabled on popup.
- Fixed typo error when sending orders to MailChimp manually.
- Corrected typo error on isAllowed for send to MailChimp action at orders grid.
- Fixed Yesnovariation.php to show A/B testing correctly.
- Added Dutch translations. (marcobax)
- Set Abandoned Cart to stop checking the same cart when an order has been made after its creation.
- Fixed ecommerce360 problem.
- Fixed problem with Popup coupon.
- Added MailChimp sign in all the modules.
Release Info
Developer | Magento Core Team |
Extension | Ebizmarts_MageMonkey |
Version | 1.1.35 |
Comparing to | |
See all releases |
Code changes from version 1.1.34 to 1.1.35
- app/code/community/Ebizmarts/AbandonedCart/Block/Popup/Emailcatcher.php +12 -7
- app/code/community/Ebizmarts/AbandonedCart/Helper/Data.php +5 -0
- app/code/community/Ebizmarts/AbandonedCart/Model/Cron.php +39 -270
- app/code/community/Ebizmarts/AbandonedCart/Model/System/Config/Yesnovariation.php +4 -2
- app/code/community/Ebizmarts/AbandonedCart/etc/config.xml +1 -1
- app/code/community/Ebizmarts/Autoresponder/Helper/Data.php +6 -1
- app/code/community/Ebizmarts/Autoresponder/Model/Cron.php +3 -95
- app/code/community/Ebizmarts/Autoresponder/etc/config.xml +1 -1
- app/code/community/Ebizmarts/MageMonkey/Block/Adminhtml/Newsletter/Subscriber/Renderer/Firstname.php +3 -3
- app/code/community/Ebizmarts/MageMonkey/Block/Adminhtml/Newsletter/Subscriber/Renderer/Lastname.php +3 -3
- app/code/community/Ebizmarts/MageMonkey/Block/Lists.php +12 -1
- app/code/community/Ebizmarts/MageMonkey/Helper/Data.php +8 -10
- app/code/community/Ebizmarts/MageMonkey/Model/Observer.php +24 -24
- app/code/community/Ebizmarts/MageMonkey/controllers/Adminhtml/EcommerceController.php +3 -1
- app/code/community/Ebizmarts/MageMonkey/etc/config.xml +1 -1
- app/code/community/Ebizmarts/Mandrill/Model/Email/Template.php +3 -1
- app/code/community/Ebizmarts/Mandrill/etc/config.xml +1 -1
- app/code/community/Ebizmarts/SweetMonkey/Model/Cron.php +3 -4
- app/code/community/Ebizmarts/SweetMonkey/etc/config.xml +1 -1
- app/design/adminhtml/default/default/template/ebizmarts/abandonedcart/system/config/fieldset/hint.phtml +1 -0
- app/design/adminhtml/default/default/template/ebizmarts/autoresponder/system/config/fieldset/hint.phtml +1 -0
- app/design/adminhtml/default/default/template/ebizmarts/mandrill/system/config/fieldset/hint.phtml +1 -0
- app/design/adminhtml/default/default/template/magemonkey/system/config/fieldset/hint.phtml +1 -0
- app/design/adminhtml/default/default/template/sweetmonkey/system/config/fieldset/hint.phtml +1 -0
- app/design/frontend/base/default/template/ebizmarts_abandonedcart/popup/emailcatcher.phtml +10 -4
- app/design/frontend/base/default/template/magemonkey/checkout/subscribe.phtml +2 -2
- app/design/frontend/base/default/template/magemonkey/lists.phtml +2 -2
- app/locale/nl_NL/Ebizmarts_AbandonedCart.csv +50 -0
- app/locale/nl_NL/Ebizmarts_MageMonkey.csv +68 -0
- app/locale/nl_NL/Ebizmarts_SweetMonkey.csv +13 -0
- app/locale/nl_NL/template/email/ebizmarts/abandonedcart/abandoned_cart_mail_1.html +69 -0
- app/locale/nl_NL/template/email/ebizmarts/abandonedcart/abandoned_cart_mail_2.html +70 -0
- app/locale/nl_NL/template/email/ebizmarts/abandonedcart/abandoned_cart_mail_3.html +71 -0
- app/locale/nl_NL/template/email/ebizmarts/abandonedcart/abandoned_cart_mail_generic.html +51 -0
- app/locale/nl_NL/template/email/ebizmarts/abandonedcart/popup_coupon_template.html +43 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/backtostock.html +46 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/birthday.html +46 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/neworder.html +46 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/noactivity.html +44 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/relatedproducts.html +47 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/review.html +49 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/reviewcoupon.html +41 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/visitedproducts.html +50 -0
- app/locale/nl_NL/template/email/ebizmarts/autoresponder/wishlist.html +50 -0
- js/ebizmarts/magemonkey/campaignCatcher.js +2 -3
- package.xml +19 -28
@@ -33,15 +33,20 @@ class Ebizmarts_AbandonedCart_Block_Popup_Emailcatcher extends Mage_Core_Block_T
|
|
33 |
return Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_SUBSCRIPTION, $storeId);
|
34 |
}
|
35 |
|
36 |
-
protected function _createCoupon($
|
37 |
{
|
38 |
$storeId = Mage::app()->getStore()->getId();
|
39 |
-
if
|
40 |
-
$
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
$
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
}
|
47 |
}
|
33 |
return Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_SUBSCRIPTION, $storeId);
|
34 |
}
|
35 |
|
36 |
+
protected function _createCoupon($cookie)
|
37 |
{
|
38 |
$storeId = Mage::app()->getStore()->getId();
|
39 |
+
if(Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_CREATE_COUPON, $storeId)) {
|
40 |
+
$cookieValues = explode('/', $cookie);
|
41 |
+
$email = $cookieValues[0];
|
42 |
+
$email = str_replace(' ', '+', $email);
|
43 |
+
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_CREATE_COUPON, $storeId)) {
|
44 |
+
$collection = Mage::getModel('ebizmarts_abandonedcart/popup')->getCollection()
|
45 |
+
->addFieldToFilter('email', array('eq' => $email));
|
46 |
+
if (!count($collection)) {
|
47 |
+
$addEmail = Mage::getModel('ebizmarts_abandonedcart/popup');
|
48 |
+
$addEmail->setEmail($email)->save();
|
49 |
+
}
|
50 |
}
|
51 |
}
|
52 |
}
|
@@ -118,4 +118,9 @@ class Ebizmarts_AbandonedCart_Helper_Data extends Mage_Core_Helper_Abstract
|
|
118 |
}
|
119 |
return $tbtVars;
|
120 |
}
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
118 |
}
|
119 |
return $tbtVars;
|
120 |
}
|
121 |
+
|
122 |
+
protected function _formatDateMerge($date)
|
123 |
+
{
|
124 |
+
return preg_replace("/(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)/", "$2/$3/$1", $date);
|
125 |
+
}
|
126 |
}
|
@@ -23,6 +23,7 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
23 |
protected $coupontype;
|
24 |
protected $couponlength;
|
25 |
protected $couponlabel;
|
|
|
26 |
|
27 |
/**
|
28 |
*
|
@@ -60,18 +61,7 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
60 |
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
|
61 |
Mage::getSingleton('core/design_package')->setStore($storeId);
|
62 |
|
63 |
-
|
64 |
-
$item = Mage::getModel('ebizmarts_abandonedcart/abtesting')->getCollection()
|
65 |
-
->addFieldToFilter('store_id', array('eq' => $storeId))
|
66 |
-
->getFirstItem();
|
67 |
-
if ($item) {
|
68 |
-
$status = $item->getCurrentStatus();
|
69 |
-
$suffix = '';
|
70 |
-
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId) && $status == 1) {
|
71 |
-
$abTesting = true;
|
72 |
-
$suffix = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_MANDRILL_SUFFIX, $storeId);
|
73 |
-
}
|
74 |
-
}
|
75 |
|
76 |
$adapter = Mage::getSingleton('core/resource')->getConnection('sales_read');
|
77 |
$this->days = array(
|
@@ -88,12 +78,7 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
88 |
$this->customergroups = explode(",", Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::CUSTOMER_GROUPS, $storeId));
|
89 |
$this->mandrillTag = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MANDRILL_TAG, $storeId) . "_$storeId";
|
90 |
|
91 |
-
|
92 |
-
$this->mandrillTag .= '_' . $suffix;
|
93 |
-
$this->sendcoupondays = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_COUPON_SENDON, $storeId);
|
94 |
-
} else {
|
95 |
-
$this->sendcoupondays = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_DAYS, $storeId);
|
96 |
-
}
|
97 |
|
98 |
//coupon vars
|
99 |
$this->couponamount = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_AMOUNT, $storeId);
|
@@ -107,202 +92,11 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
107 |
if (!$this->days[$run]) {
|
108 |
return;
|
109 |
}
|
110 |
-
$this->_processRun($adapter, $run, $storeId
|
111 |
-
|
112 |
-
// $diff = $this->days[$run];
|
113 |
-
// if ($run == 1 && $this->unit == Ebizmarts_AbandonedCart_Model_Config::IN_HOURS) {
|
114 |
-
// $diff -= $this->days[0] / 24;
|
115 |
-
// } elseif ($run != 0) {
|
116 |
-
// $diff -= $this->days[$run - 1];
|
117 |
-
// }
|
118 |
-
//
|
119 |
-
// // set the top date of the carts to get
|
120 |
-
// $expr = sprintf('DATE_SUB(%s, %s)', $adapter->quote(now()), $this->_getIntervalUnitSql($diff, 'DAY'));
|
121 |
-
// if ($run == 0 && $this->unit == Ebizmarts_AbandonedCart_Model_Config::IN_HOURS) {
|
122 |
-
// $expr = sprintf('DATE_SUB(%s, %s)', $adapter->quote(now()), $this->_getIntervalUnitSql($diff, 'HOUR'));
|
123 |
-
// }
|
124 |
-
// $from = new Zend_Db_Expr($expr);
|
125 |
-
//
|
126 |
-
// // get collection of abandoned carts with cart_counter == $run
|
127 |
-
// $collection = Mage::getResourceModel('reports/quote_collection');
|
128 |
-
// $collection->addFieldToFilter('items_count', array('neq' => '0'))
|
129 |
-
// ->addFieldToFilter('main_table.is_active', '1')
|
130 |
-
// ->addFieldToFilter('main_table.store_id', array('eq' => $storeId))
|
131 |
-
// ->addSubtotal($storeId)
|
132 |
-
// ->setOrder('updated_at');
|
133 |
-
//
|
134 |
-
// $collection->addFieldToFilter('main_table.converted_at', array(array('null' => true), $this->_getSuggestedZeroDate()))
|
135 |
-
// ->addFieldToFilter('main_table.updated_at', array('to' => $from, 'from' => $this->firstdate))
|
136 |
-
// ->addFieldToFilter('main_table.ebizmarts_abandonedcart_counter', array('eq' => $run));
|
137 |
-
//
|
138 |
-
// $collection->addFieldToFilter('main_table.customer_email', array('neq' => ''));
|
139 |
-
// if (count($this->customergroups)) {
|
140 |
-
// $collection->addFieldToFilter('main_table.customer_group_id', array('in' => $this->customergroups));
|
141 |
-
// }
|
142 |
-
//
|
143 |
-
// // for each cart of the current run
|
144 |
-
// foreach ($collection as $quote) {
|
145 |
-
// foreach ($quote->getAllVisibleItems() as $item) {
|
146 |
-
// $removeFromQuote = false;
|
147 |
-
// $product = Mage::getModel('catalog/product')->setStoreId($storeId)->load($item->getProductId());
|
148 |
-
// if (!$product || $product->getStatus() == Mage_Catalog_Model_Product_Status::STATUS_DISABLED) {
|
149 |
-
// Mage::log('AbandonedCart; ' . $product->getSku() . ' is no longer present or enabled; remove from quote ' . $quote->getId() . ' for email', null, 'Ebizmarts_AbandonedCart.log');
|
150 |
-
// $removeFromQuote = true;
|
151 |
-
// }
|
152 |
-
//
|
153 |
-
// if ($product->getTypeId() == 'configurable') {
|
154 |
-
// $simpleProductId = Mage::getModel('catalog/product')->getIdBySku($item->getSku());
|
155 |
-
// $simpleProduct = Mage::getModel('catalog/product')->load($simpleProductId);
|
156 |
-
// $stock = $simpleProduct->getStockItem();
|
157 |
-
// $stockQty = $stock->getQty();
|
158 |
-
// } elseif ($product->getTypeId() == 'bundle') {
|
159 |
-
// $options = $item->getProduct()->getTypeInstance(true)->getOrderOptions($item->getProduct());
|
160 |
-
// $bundled_product = new Mage_Catalog_Model_Product();
|
161 |
-
// $bundled_product->load($product->getId());
|
162 |
-
// $selectionCollection = $bundled_product->getTypeInstance(true)->getSelectionsCollection(
|
163 |
-
// $bundled_product->getTypeInstance(true)->getOptionsIds($bundled_product), $bundled_product
|
164 |
-
// );
|
165 |
-
// $stockQty = -1;
|
166 |
-
// foreach ($selectionCollection as $option) {
|
167 |
-
// foreach ($options['bundle_options'] as $bundle) {
|
168 |
-
// if ($bundle['value'][0]['title'] == $option->getName()) {
|
169 |
-
// $label = $bundle['label'];
|
170 |
-
// $qty = $bundle['value'][0]['qty'];
|
171 |
-
// if ($stockQty == -1 || $stockQty > $qty) {
|
172 |
-
// $stockQty = $qty;
|
173 |
-
// }
|
174 |
-
// }
|
175 |
-
// }
|
176 |
-
// }
|
177 |
-
//
|
178 |
-
// } else {
|
179 |
-
// $stock = $product->getStockItem();
|
180 |
-
// $stockQty = $stock->getQty();
|
181 |
-
// }
|
182 |
-
//
|
183 |
-
// if (
|
184 |
-
// (
|
185 |
-
// is_object($stock) && ($stock->getManageStock() ||
|
186 |
-
// ($stock->getUseConfigManageStock() && Mage::getStoreConfig('cataloginventory/item_options/manage_stock', $quote->getStoreId())))
|
187 |
-
// )
|
188 |
-
// && $stockQty < $item->getQty()
|
189 |
-
// ) {
|
190 |
-
// Mage::log('AbandonedCart; ' . $product->getSku() . ' is no longer in stock; remove from quote ' . $quote->getId() . ' for email', null, 'Ebizmarts_AbandonedCart.log');
|
191 |
-
// $removeFromQuote = true;
|
192 |
-
// }
|
193 |
-
// if ($removeFromQuote) {
|
194 |
-
// $quote->removeItem($item->getId());
|
195 |
-
// }
|
196 |
-
// }
|
197 |
-
//
|
198 |
-
// if (count($quote->getAllVisibleItems()) < 1) {
|
199 |
-
// $quote2 = Mage::getModel('sales/quote')->loadByIdWithoutStore($quote->getId());
|
200 |
-
// $quote2->setEbizmartsAbandonedcartCounter($quote2->getEbizmartsAbandonedcartCounter() + 1);
|
201 |
-
// $quote2->save();
|
202 |
-
// continue;
|
203 |
-
// }
|
204 |
-
// // check if they are any order from the customer with date >=
|
205 |
-
// $collection2 = Mage::getResourceModel('reports/quote_collection');
|
206 |
-
// $collection2->addFieldToFilter('main_table.is_active', '0')
|
207 |
-
// ->addFieldToFilter('main_table.reserved_order_id', array('neq' => 'NULL'))
|
208 |
-
// ->addFieldToFilter('main_table.customer_email', array('eq' => $quote->getCustomerEmail()))
|
209 |
-
// ->addFieldToFilter('main_table.updated_at', array('from' => $quote->getUpdatedAt()));
|
210 |
-
// if ($collection2->getSize()) {
|
211 |
-
// continue;
|
212 |
-
// }
|
213 |
-
// //
|
214 |
-
// //$url = Mage::getBaseUrl('web').'ebizmarts_abandonedcart/abandoned/loadquote?id='.$quote->getEntityId();
|
215 |
-
// //srand((double)microtime()*1000000);
|
216 |
-
// $token = md5(rand(0, 9999999));
|
217 |
-
// if ($abTesting) {
|
218 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl('', array('_nosid' => true)) . 'ebizmarts_abandonedcart/abandoned/loadquote?id=' . $quote->getEntityId() . '&token=' . $token . '&' . $suffix;
|
219 |
-
// } else {
|
220 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl('', array('_nosid' => true)) . 'ebizmarts_abandonedcart/abandoned/loadquote?id=' . $quote->getEntityId() . '&token=' . $token;
|
221 |
-
// }
|
222 |
-
//
|
223 |
-
// $data = array('AbandonedURL' => $url, 'AbandonedDate' => $quote->getUpdatedAt());
|
224 |
-
//
|
225 |
-
// // send email
|
226 |
-
// $senderid = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::SENDER, $storeId);
|
227 |
-
// $sender = array('name' => Mage::getStoreConfig("trans_email/ident_$senderid/name", $storeId), 'email' => Mage::getStoreConfig("trans_email/ident_$senderid/email", $storeId));
|
228 |
-
//
|
229 |
-
// $email = $quote->getCustomerEmail();
|
230 |
-
//
|
231 |
-
// if (Mage::helper('ebizmarts_autoresponder')->isSubscribed($email, 'abandonedcart', $storeId)) {
|
232 |
-
// $name = $quote->getCustomerFirstname() . ' ' . $quote->getCustomerLastname();
|
233 |
-
// $quote2 = Mage::getModel('sales/quote')->loadByIdWithoutStore($quote->getId());
|
234 |
-
// $unsubscribeUrl = Mage::getModel('core/url')->setStore($storeId)->getUrl() . 'ebizautoresponder/autoresponder/unsubscribe?list=abandonedcart&email=' . $email . '&store=' . $storeId;
|
235 |
-
// $couponcode = '';
|
236 |
-
//
|
237 |
-
// //if hour is set for first run calculates hours since cart was created else calculates days
|
238 |
-
// $today = idate('U', strtotime(now()));
|
239 |
-
// $updatedAt = idate('U', strtotime($quote2->getUpdatedAt()));
|
240 |
-
// $updatedAtDiff = ($today - $updatedAt) / 60 / 60 / 24;
|
241 |
-
// if ($this->unit == Ebizmarts_AbandonedCart_Model_Config::IN_HOURS && $run == 0) {
|
242 |
-
// $updatedAtDiff = ($today - $updatedAt) / 60 / 60;
|
243 |
-
// }
|
244 |
-
//
|
245 |
-
// // if days have passed proceed to send mail
|
246 |
-
// if ($updatedAtDiff >= $diff) {
|
247 |
-
// $mailsubject = $this->_getMailSubject($run, $abTesting, $storeId);
|
248 |
-
// $templateId = $this->_getTemplateId($run, $abTesting, $storeId);
|
249 |
-
// if ($this->sendcoupon && $run + 1 == $this->sendcoupondays) {
|
250 |
-
// //$templateId = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::EMAIL_TEMPLATE_XML_PATH);
|
251 |
-
// // create a new coupon
|
252 |
-
// if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_AUTOMATIC) == 2) {
|
253 |
-
// list($couponcode, $discount, $toDate) = $this->_createNewCoupon($storeId, $email, $this->couponamount, $this->couponexpiredays, $this->coupontype, $this->couponlength, $this->couponlabel);
|
254 |
-
// $url .= '&coupon=' . $couponcode;
|
255 |
-
// $vars = array('quote' => $quote, 'url' => $url, 'couponcode' => $couponcode, 'discount' => $discount,
|
256 |
-
// 'todate' => $toDate, 'name' => $name, 'tags' => array($this->mandrillTag), 'unsubscribeurl' => $unsubscribeUrl);
|
257 |
-
// } else {
|
258 |
-
// $couponcode = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_CODE);
|
259 |
-
// $url .= '&coupon=' . $couponcode;
|
260 |
-
// $vars = array('quote' => $quote, 'url' => $url, 'couponcode' => $couponcode, 'name' => $name, 'tags' => array($this->mandrillTag), 'unsubscribeurl' => $unsubscribeUrl);
|
261 |
-
// }
|
262 |
-
// } else {
|
263 |
-
// //$templateId = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::EMAIL_TEMPLATE_XML_PATH);
|
264 |
-
// $vars = array('quote' => $quote, 'url' => $url, 'unsubscribeurl' => $unsubscribeUrl, 'tags' => array($this->mandrillTag));
|
265 |
-
//
|
266 |
-
// }
|
267 |
-
//
|
268 |
-
// $customer = Mage::getModel('customer/customer')
|
269 |
-
// ->setStore(Mage::app()->getStore($storeId))
|
270 |
-
// ->loadByEmail($email);
|
271 |
-
// if ($customer->getId()) {
|
272 |
-
// $tbtPoints = Mage::helper('ebizmarts_abandonedcart')->getTBTPoints($customer->getId(), $storeId);
|
273 |
-
// foreach ($tbtPoints as $key => $field) {
|
274 |
-
// if ($key == 'points') {
|
275 |
-
// if ($field >= Mage::getStoreConfig('sweetmonkey/general/email_points', $storeId)) {
|
276 |
-
// $vars[$key] = $field;
|
277 |
-
// }
|
278 |
-
// } else {
|
279 |
-
// $vars[$key] = $field;
|
280 |
-
// }
|
281 |
-
// }
|
282 |
-
// }
|
283 |
-
//
|
284 |
-
// Mage::app()->getTranslator()->init('frontend', true);
|
285 |
-
// $translate = Mage::getSingleton('core/translate');
|
286 |
-
// $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailsubject)->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
287 |
-
// $translate->setTranslateInLine(true);
|
288 |
-
// $quote2->setEbizmartsAbandonedcartCounter($quote2->getEbizmartsAbandonedcartCounter() + 1);
|
289 |
-
// $quote2->setEbizmartsAbandonedcartToken($token);
|
290 |
-
// $quote2->save();
|
291 |
-
//
|
292 |
-
// if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId)) {
|
293 |
-
// $counterCollection = Mage::getModel('ebizmarts_abandonedcart/abtesting')->getCollection()
|
294 |
-
// ->addFieldToFilter('store_id', array('eq' => $storeId));
|
295 |
-
// $counter = $counterCollection->getFirstItem();
|
296 |
-
// $counter->setCurrentStatus($counter->getCurrentStatus() + 1)
|
297 |
-
// ->save();
|
298 |
-
// }
|
299 |
-
// Mage::helper('ebizmarts_abandonedcart')->saveMail('abandoned cart', $email, $name, $couponcode, $storeId);
|
300 |
-
// }
|
301 |
-
// }
|
302 |
-
// }
|
303 |
}
|
304 |
}
|
305 |
-
protected function _processRun($adapter, $run, $storeId
|
306 |
{
|
307 |
// subtract days from latest run to get difference from the actual abandon date of the cart
|
308 |
$diff = $this->days[$run];
|
@@ -336,61 +130,28 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
336 |
$collection->addFieldToFilter('main_table.customer_group_id', array('in' => $this->customergroups));
|
337 |
}
|
338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
// for each cart of the current run
|
340 |
foreach ($collection as $quote) {
|
341 |
$this->_proccessCollection($quote, $storeId);
|
342 |
-
// foreach ($quote->getAllVisibleItems() as $item) {
|
343 |
-
// $removeFromQuote = false;
|
344 |
-
// $product = Mage::getModel('catalog/product')->setStoreId($storeId)->load($item->getProductId());
|
345 |
-
// if (!$product || $product->getStatus() == Mage_Catalog_Model_Product_Status::STATUS_DISABLED) {
|
346 |
-
// Mage::log('AbandonedCart; ' . $product->getSku() . ' is no longer present or enabled; remove from quote ' . $quote->getId() . ' for email', null, 'Ebizmarts_AbandonedCart.log');
|
347 |
-
// $removeFromQuote = true;
|
348 |
-
// }
|
349 |
-
//
|
350 |
-
// if ($product->getTypeId() == 'configurable') {
|
351 |
-
// $simpleProductId = Mage::getModel('catalog/product')->getIdBySku($item->getSku());
|
352 |
-
// $simpleProduct = Mage::getModel('catalog/product')->load($simpleProductId);
|
353 |
-
// $stock = $simpleProduct->getStockItem();
|
354 |
-
// $stockQty = $stock->getQty();
|
355 |
-
// } elseif ($product->getTypeId() == 'bundle') {
|
356 |
-
// $options = $item->getProduct()->getTypeInstance(true)->getOrderOptions($item->getProduct());
|
357 |
-
// $bundled_product = new Mage_Catalog_Model_Product();
|
358 |
-
// $bundled_product->load($product->getId());
|
359 |
-
// $selectionCollection = $bundled_product->getTypeInstance(true)->getSelectionsCollection(
|
360 |
-
// $bundled_product->getTypeInstance(true)->getOptionsIds($bundled_product), $bundled_product
|
361 |
-
// );
|
362 |
-
// $stockQty = -1;
|
363 |
-
// foreach ($selectionCollection as $option) {
|
364 |
-
// foreach ($options['bundle_options'] as $bundle) {
|
365 |
-
// if ($bundle['value'][0]['title'] == $option->getName()) {
|
366 |
-
// $label = $bundle['label'];
|
367 |
-
// $qty = $bundle['value'][0]['qty'];
|
368 |
-
// if ($stockQty == -1 || $stockQty > $qty) {
|
369 |
-
// $stockQty = $qty;
|
370 |
-
// }
|
371 |
-
// }
|
372 |
-
// }
|
373 |
-
// }
|
374 |
-
//
|
375 |
-
// } else {
|
376 |
-
// $stock = $product->getStockItem();
|
377 |
-
// $stockQty = $stock->getQty();
|
378 |
-
// }
|
379 |
-
//
|
380 |
-
// if (
|
381 |
-
// (
|
382 |
-
// is_object($stock) && ($stock->getManageStock() ||
|
383 |
-
// ($stock->getUseConfigManageStock() && Mage::getStoreConfig('cataloginventory/item_options/manage_stock', $quote->getStoreId())))
|
384 |
-
// )
|
385 |
-
// && $stockQty < $item->getQty()
|
386 |
-
// ) {
|
387 |
-
// Mage::log('AbandonedCart; ' . $product->getSku() . ' is no longer in stock; remove from quote ' . $quote->getId() . ' for email', null, 'Ebizmarts_AbandonedCart.log');
|
388 |
-
// $removeFromQuote = true;
|
389 |
-
// }
|
390 |
-
// if ($removeFromQuote) {
|
391 |
-
// $quote->removeItem($item->getId());
|
392 |
-
// }
|
393 |
-
// }
|
394 |
|
395 |
if (count($quote->getAllVisibleItems()) < 1) {
|
396 |
$quote2 = Mage::getModel('sales/quote')->loadByIdWithoutStore($quote->getId());
|
@@ -405,6 +166,9 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
405 |
->addFieldToFilter('main_table.customer_email', array('eq' => $quote->getCustomerEmail()))
|
406 |
->addFieldToFilter('main_table.updated_at', array('from' => $quote->getUpdatedAt()));
|
407 |
if ($collection2->getSize()) {
|
|
|
|
|
|
|
408 |
continue;
|
409 |
}
|
410 |
//
|
@@ -480,23 +244,28 @@ class Ebizmarts_AbandonedCart_Model_Cron
|
|
480 |
|
481 |
Mage::app()->getTranslator()->init('frontend', true);
|
482 |
$translate = Mage::getSingleton('core/translate');
|
483 |
-
$mail = Mage::getModel('core/email_template')
|
|
|
|
|
484 |
$translate->setTranslateInLine(true);
|
485 |
$quote2->setEbizmartsAbandonedcartCounter($quote2->getEbizmartsAbandonedcartCounter() + 1);
|
486 |
$quote2->setEbizmartsAbandonedcartToken($token);
|
487 |
$quote2->save();
|
488 |
|
489 |
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId)) {
|
490 |
-
$
|
491 |
-
->addFieldToFilter('store_id', array('eq' => $storeId));
|
492 |
-
$counter = $counterCollection->getFirstItem();
|
493 |
-
$counter->setCurrentStatus($counter->getCurrentStatus() + 1)
|
494 |
-
->save();
|
495 |
}
|
496 |
Mage::helper('ebizmarts_abandonedcart')->saveMail('abandoned cart', $email, $name, $couponcode, $storeId);
|
497 |
}
|
498 |
}
|
499 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
}
|
502 |
protected function _proccessCollection($quote, $storeId)
|
23 |
protected $coupontype;
|
24 |
protected $couponlength;
|
25 |
protected $couponlabel;
|
26 |
+
protected $sendcoupondays;
|
27 |
|
28 |
/**
|
29 |
*
|
61 |
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
|
62 |
Mage::getSingleton('core/design_package')->setStore($storeId);
|
63 |
|
64 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
$adapter = Mage::getSingleton('core/resource')->getConnection('sales_read');
|
67 |
$this->days = array(
|
78 |
$this->customergroups = explode(",", Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::CUSTOMER_GROUPS, $storeId));
|
79 |
$this->mandrillTag = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MANDRILL_TAG, $storeId) . "_$storeId";
|
80 |
|
81 |
+
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
//coupon vars
|
84 |
$this->couponamount = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_AMOUNT, $storeId);
|
92 |
if (!$this->days[$run]) {
|
93 |
return;
|
94 |
}
|
95 |
+
$this->_processRun($adapter, $run, $storeId);
|
96 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
}
|
98 |
}
|
99 |
+
protected function _processRun($adapter, $run, $storeId)
|
100 |
{
|
101 |
// subtract days from latest run to get difference from the actual abandon date of the cart
|
102 |
$diff = $this->days[$run];
|
130 |
$collection->addFieldToFilter('main_table.customer_group_id', array('in' => $this->customergroups));
|
131 |
}
|
132 |
|
133 |
+
$abTesting = false;
|
134 |
+
$item = Mage::getModel('ebizmarts_abandonedcart/abtesting')->getCollection()
|
135 |
+
->addFieldToFilter('store_id', array('eq' => $storeId))
|
136 |
+
->getFirstItem();
|
137 |
+
if ($item) {
|
138 |
+
$status = $item->getCurrentStatus();
|
139 |
+
$suffix = '';
|
140 |
+
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId) && $status == 1) {
|
141 |
+
$abTesting = true;
|
142 |
+
$suffix = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_MANDRILL_SUFFIX, $storeId);
|
143 |
+
}
|
144 |
+
}
|
145 |
+
if ($abTesting) {
|
146 |
+
$this->mandrillTag .= '_' . $suffix;
|
147 |
+
$this->sendcoupondays = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_COUPON_SENDON, $storeId);
|
148 |
+
} else {
|
149 |
+
$this->sendcoupondays = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::COUPON_DAYS, $storeId);
|
150 |
+
}
|
151 |
+
|
152 |
// for each cart of the current run
|
153 |
foreach ($collection as $quote) {
|
154 |
$this->_proccessCollection($quote, $storeId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
|
156 |
if (count($quote->getAllVisibleItems()) < 1) {
|
157 |
$quote2 = Mage::getModel('sales/quote')->loadByIdWithoutStore($quote->getId());
|
166 |
->addFieldToFilter('main_table.customer_email', array('eq' => $quote->getCustomerEmail()))
|
167 |
->addFieldToFilter('main_table.updated_at', array('from' => $quote->getUpdatedAt()));
|
168 |
if ($collection2->getSize()) {
|
169 |
+
//Set counter to its max value to prevent this quote to slow the process in the future
|
170 |
+
$quote->setEbizmartsAbandonedcartCounter($this->maxtimes);
|
171 |
+
$quote->save();
|
172 |
continue;
|
173 |
}
|
174 |
//
|
244 |
|
245 |
Mage::app()->getTranslator()->init('frontend', true);
|
246 |
$translate = Mage::getSingleton('core/translate');
|
247 |
+
$mail = Mage::getModel('core/email_template')
|
248 |
+
->setTemplateSubject($mailsubject)
|
249 |
+
->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
250 |
$translate->setTranslateInLine(true);
|
251 |
$quote2->setEbizmartsAbandonedcartCounter($quote2->getEbizmartsAbandonedcartCounter() + 1);
|
252 |
$quote2->setEbizmartsAbandonedcartToken($token);
|
253 |
$quote2->save();
|
254 |
|
255 |
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId)) {
|
256 |
+
$abTesting = !$abTesting;
|
|
|
|
|
|
|
|
|
257 |
}
|
258 |
Mage::helper('ebizmarts_abandonedcart')->saveMail('abandoned cart', $email, $name, $couponcode, $storeId);
|
259 |
}
|
260 |
}
|
261 |
}
|
262 |
+
if (Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::AB_TESTING_ACTIVE, $storeId)) {
|
263 |
+
$counterCollection = Mage::getModel('ebizmarts_abandonedcart/abtesting')->getCollection()
|
264 |
+
->addFieldToFilter('store_id', array('eq' => $storeId));
|
265 |
+
$counter = $counterCollection->getFirstItem();
|
266 |
+
$counter->setCurrentStatus($counter->getCurrentStatus() + 1)
|
267 |
+
->save();
|
268 |
+
}
|
269 |
|
270 |
}
|
271 |
protected function _proccessCollection($quote, $storeId)
|
@@ -13,16 +13,18 @@ class Ebizmarts_AbandonedCart_Model_System_Config_Yesnovariation
|
|
13 |
{
|
14 |
$code = Mage::getSingleton('adminhtml/config_data')->getStore();
|
15 |
$storeId = Mage::getModel('core/store')->load($code)->getId();
|
16 |
-
|
|
|
17 |
$active = -Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MAXTIMES, $storeId);
|
18 |
} else {
|
19 |
$active = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MAXTIMES, $storeId);
|
20 |
}
|
21 |
$options = array(
|
22 |
array('value' => 0, 'label' => Mage::helper('ebizmarts_abandonedcart')->__('No')),
|
23 |
-
array('value' => ($active +
|
24 |
);
|
25 |
return $options;
|
26 |
}
|
27 |
|
|
|
28 |
}
|
13 |
{
|
14 |
$code = Mage::getSingleton('adminhtml/config_data')->getStore();
|
15 |
$storeId = Mage::getModel('core/store')->load($code)->getId();
|
16 |
+
$hasCoupon = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::SEND_COUPON, $storeId);
|
17 |
+
if ($hasCoupon) {
|
18 |
$active = -Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MAXTIMES, $storeId);
|
19 |
} else {
|
20 |
$active = Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::MAXTIMES, $storeId);
|
21 |
}
|
22 |
$options = array(
|
23 |
array('value' => 0, 'label' => Mage::helper('ebizmarts_abandonedcart')->__('No')),
|
24 |
+
array('value' => ($active +($hasCoupon?-1:1) ), 'label' => Mage::helper('ebizmarts_abandonedcart')->__('Yes'))
|
25 |
);
|
26 |
return $options;
|
27 |
}
|
28 |
|
29 |
+
|
30 |
}
|
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_AbandonedCart>
|
13 |
-
<version>1.1.
|
14 |
</Ebizmarts_AbandonedCart>
|
15 |
</modules>
|
16 |
<global>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_AbandonedCart>
|
13 |
+
<version>1.1.35</version>
|
14 |
</Ebizmarts_AbandonedCart>
|
15 |
</modules>
|
16 |
<global>
|
@@ -98,7 +98,7 @@ class Ebizmarts_Autoresponder_Helper_Data extends Mage_Core_Helper_Abstract
|
|
98 |
|
99 |
public function isSetTime($setTime)
|
100 |
{
|
101 |
-
$now = date('H');
|
102 |
if ($now == $setTime) {
|
103 |
return true;
|
104 |
}
|
@@ -166,4 +166,9 @@ class Ebizmarts_Autoresponder_Helper_Data extends Mage_Core_Helper_Abstract
|
|
166 |
}
|
167 |
}
|
168 |
|
|
|
|
|
|
|
|
|
|
|
169 |
}
|
98 |
|
99 |
public function isSetTime($setTime)
|
100 |
{
|
101 |
+
$now = date('H', Mage::getModel('core/date')->timestamp(time()));
|
102 |
if ($now == $setTime) {
|
103 |
return true;
|
104 |
}
|
166 |
}
|
167 |
}
|
168 |
|
169 |
+
protected function _formatDateMerge($date)
|
170 |
+
{
|
171 |
+
return preg_replace("/(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)/", "$2/$3/$1", $date);
|
172 |
+
}
|
173 |
+
|
174 |
}
|
@@ -544,30 +544,7 @@ class Ebizmarts_Autoresponder_Model_Cron
|
|
544 |
if (Mage::helper('ebizmarts_autoresponder')->isSubscribed($email, 'visitedproducts', $storeId)) {
|
545 |
$translate = Mage::getSingleton('core/translate');
|
546 |
$name = $customer->getFirstname() . ' ' . $customer->getLastname();
|
547 |
-
$this->
|
548 |
-
|
549 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl() . 'ebizautoresponder/autoresponder/unsubscribe?list=visitedproducts&email=' . $email . '&store=' . $storeId;
|
550 |
-
// $vars = array('name' => $name, 'tags' => array($tags), 'products' => $products, 'url' => $url);
|
551 |
-
//
|
552 |
-
// $customer = Mage::getModel('customer/customer')
|
553 |
-
// ->setStore(Mage::app()->getStore($storeId))
|
554 |
-
// ->loadByEmail($email);
|
555 |
-
// if ($customer->getId()) {
|
556 |
-
// $tbtPoints = Mage::helper('ebizmarts_autoresponder')->getTBTPoints($customer->getId(), $storeId);
|
557 |
-
// foreach ($tbtPoints as $key => $field) {
|
558 |
-
// if ($key == 'points') {
|
559 |
-
// if ($field >= Mage::getStoreConfig('sweetmonkey/general/email_points', $storeId)) {
|
560 |
-
// $vars[$key] = $field;
|
561 |
-
// }
|
562 |
-
// } else {
|
563 |
-
// $vars[$key] = $field;
|
564 |
-
// }
|
565 |
-
// }
|
566 |
-
// }
|
567 |
-
//
|
568 |
-
// $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
569 |
-
// $translate->setTranslateInLine(true);
|
570 |
-
// Mage::helper('ebizmarts_abandonedcart')->saveMail('visitedproducts', $email, $name, "", $storeId);
|
571 |
}
|
572 |
}
|
573 |
$products = array();
|
@@ -599,31 +576,7 @@ class Ebizmarts_Autoresponder_Model_Cron
|
|
599 |
$translate = Mage::getSingleton('core/translate');
|
600 |
$email = $item->getCustomerEmail();
|
601 |
$name = 'customer';
|
602 |
-
$this->
|
603 |
-
|
604 |
-
|
605 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl() . 'ebizautoresponder/autoresponder/unsubscribe?list=visitedproducts&email=' . $email . '&store=' . $storeId;
|
606 |
-
// $vars = array('name' => $name, 'tags' => array($tags), 'products' => $products, 'url' => $url);
|
607 |
-
//
|
608 |
-
// $customer = Mage::getModel('customer/customer')
|
609 |
-
// ->setStore(Mage::app()->getStore($storeId))
|
610 |
-
// ->loadByEmail($email);
|
611 |
-
// if ($customer->getId()) {
|
612 |
-
// $tbtPoints = Mage::helper('ebizmarts_autoresponder')->getTBTPoints($customer->getId(), $storeId);
|
613 |
-
// foreach ($tbtPoints as $key => $field) {
|
614 |
-
// if ($key == 'points') {
|
615 |
-
// if ($field >= Mage::getStoreConfig('sweetmonkey/general/email_points', $storeId)) {
|
616 |
-
// $vars[$key] = $field;
|
617 |
-
// }
|
618 |
-
// } else {
|
619 |
-
// $vars[$key] = $field;
|
620 |
-
// }
|
621 |
-
// }
|
622 |
-
// }
|
623 |
-
//
|
624 |
-
// $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
625 |
-
// $translate->setTranslateInLine(true);
|
626 |
-
// Mage::helper('ebizmarts_abandonedcart')->saveMail('visitedproducts', $email, $name, "", $storeId);
|
627 |
}
|
628 |
}
|
629 |
if (count($products)) {
|
@@ -632,58 +585,13 @@ class Ebizmarts_Autoresponder_Model_Cron
|
|
632 |
if (Mage::helper('ebizmarts_autoresponder')->isSubscribed($email, 'visitedproducts', $storeId)) {
|
633 |
$translate = Mage::getSingleton('core/translate');
|
634 |
$name = $customer->getFirstname() . ' ' . $customer->getLastname();
|
635 |
-
$this->
|
636 |
-
|
637 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl() . 'ebizautoresponder/autoresponder/unsubscribe?list=visitedproducts&email=' . $email . '&store=' . $storeId;
|
638 |
-
// $vars = array('name' => $name, 'tags' => array($tags), 'products' => $products, 'url' => $url);
|
639 |
-
//
|
640 |
-
// $customer = Mage::getModel('customer/customer')
|
641 |
-
// ->setStore(Mage::app()->getStore($storeId))
|
642 |
-
// ->loadByEmail($email);
|
643 |
-
// if ($customer->getId()) {
|
644 |
-
// $tbtPoints = Mage::helper('ebizmarts_autoresponder')->getTBTPoints($customer->getId(), $storeId);
|
645 |
-
// foreach ($tbtPoints as $key => $field) {
|
646 |
-
// if ($key == 'points') {
|
647 |
-
// if ($field >= Mage::getStoreConfig('sweetmonkey/general/email_points', $storeId)) {
|
648 |
-
// $vars[$key] = $field;
|
649 |
-
// }
|
650 |
-
// } else {
|
651 |
-
// $vars[$key] = $field;
|
652 |
-
// }
|
653 |
-
// }
|
654 |
-
// }
|
655 |
-
//
|
656 |
-
// $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
657 |
-
// $translate->setTranslateInLine(true);
|
658 |
-
// Mage::helper('ebizmarts_abandonedcart')->saveMail('visitedproducts', $email, $name, "", $storeId);
|
659 |
}
|
660 |
} else {
|
661 |
//add customer by email placed on Abandoned Cart Popup
|
662 |
$email = $item->getCustomerEmail();
|
663 |
$name = 'customer';
|
664 |
$this->_sendVisitedProductEmail($email,$storeId,$products,$name,$tags);
|
665 |
-
// $url = Mage::getModel('core/url')->setStore($storeId)->getUrl() . 'ebizautoresponder/autoresponder/unsubscribe?list=visitedproducts&email=' . $email . '&store=' . $storeId;
|
666 |
-
// $vars = array('name' => $name, 'tags' => array($tags), 'products' => $products, 'url' => $url);
|
667 |
-
//
|
668 |
-
// $customer = Mage::getModel('customer/customer')
|
669 |
-
// ->setStore(Mage::app()->getStore($storeId))
|
670 |
-
// ->loadByEmail($email);
|
671 |
-
// if ($customer->getId()) {
|
672 |
-
// $tbtPoints = Mage::helper('ebizmarts_autoresponder')->getTBTPoints($customer->getId(), $storeId);
|
673 |
-
// foreach ($tbtPoints as $key => $field) {
|
674 |
-
// if ($key == 'points') {
|
675 |
-
// if ($field >= Mage::getStoreConfig('sweetmonkey/general/email_points', $storeId)) {
|
676 |
-
// $vars[$key] = $field;
|
677 |
-
// }
|
678 |
-
// } else {
|
679 |
-
// $vars[$key] = $field;
|
680 |
-
// }
|
681 |
-
// }
|
682 |
-
// }
|
683 |
-
//
|
684 |
-
// $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $name, $vars, $storeId);
|
685 |
-
// $translate->setTranslateInLine(true);
|
686 |
-
// Mage::helper('ebizmarts_abandonedcart')->saveMail('visitedproducts', $email, $name, "", $storeId);
|
687 |
}
|
688 |
}
|
689 |
|
544 |
if (Mage::helper('ebizmarts_autoresponder')->isSubscribed($email, 'visitedproducts', $storeId)) {
|
545 |
$translate = Mage::getSingleton('core/translate');
|
546 |
$name = $customer->getFirstname() . ' ' . $customer->getLastname();
|
547 |
+
$this->_sendVisitedProductEmail($email,$storeId,$products,$name,$tags);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
}
|
549 |
}
|
550 |
$products = array();
|
576 |
$translate = Mage::getSingleton('core/translate');
|
577 |
$email = $item->getCustomerEmail();
|
578 |
$name = 'customer';
|
579 |
+
$this->_sendVisitedProductEmail($email,$storeId,$products,$name,$tags);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
}
|
581 |
}
|
582 |
if (count($products)) {
|
585 |
if (Mage::helper('ebizmarts_autoresponder')->isSubscribed($email, 'visitedproducts', $storeId)) {
|
586 |
$translate = Mage::getSingleton('core/translate');
|
587 |
$name = $customer->getFirstname() . ' ' . $customer->getLastname();
|
588 |
+
$this->_sendVisitedProductEmail($email,$storeId,$products,$name,$tags);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
}
|
590 |
} else {
|
591 |
//add customer by email placed on Abandoned Cart Popup
|
592 |
$email = $item->getCustomerEmail();
|
593 |
$name = 'customer';
|
594 |
$this->_sendVisitedProductEmail($email,$storeId,$products,$name,$tags);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
}
|
596 |
}
|
597 |
|
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_Autoresponder>
|
13 |
-
<version>1.1.
|
14 |
</Ebizmarts_Autoresponder>
|
15 |
</modules>
|
16 |
<global>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_Autoresponder>
|
13 |
+
<version>1.1.14</version>
|
14 |
</Ebizmarts_Autoresponder>
|
15 |
</modules>
|
16 |
<global>
|
@@ -11,10 +11,10 @@ class Ebizmarts_MageMonkey_Block_Adminhtml_Newsletter_Subscriber_Renderer_Firstn
|
|
11 |
{
|
12 |
$subscriberFirstName = $row->getData('subscriber_firstname');
|
13 |
$customerFirstName = $row->getData('customer_firstname');
|
14 |
-
if($
|
15 |
-
return $subscriberFirstName;
|
16 |
-
}elseif($customerFirstName){
|
17 |
return $customerFirstName;
|
|
|
|
|
18 |
}else{
|
19 |
return '----';
|
20 |
}
|
11 |
{
|
12 |
$subscriberFirstName = $row->getData('subscriber_firstname');
|
13 |
$customerFirstName = $row->getData('customer_firstname');
|
14 |
+
if($customerFirstName){
|
|
|
|
|
15 |
return $customerFirstName;
|
16 |
+
}elseif($subscriberFirstName){
|
17 |
+
return $subscriberFirstName;
|
18 |
}else{
|
19 |
return '----';
|
20 |
}
|
@@ -11,10 +11,10 @@ class Ebizmarts_MageMonkey_Block_Adminhtml_Newsletter_Subscriber_Renderer_Lastna
|
|
11 |
{
|
12 |
$subscriberLastName = $row->getData('subscriber_lastname');
|
13 |
$customerLastName = $row->getData('customer_lastname');
|
14 |
-
if($
|
15 |
-
return $subscriberLastName;
|
16 |
-
}elseif($customerLastName){
|
17 |
return $customerLastName;
|
|
|
|
|
18 |
}else{
|
19 |
return '----';
|
20 |
}
|
11 |
{
|
12 |
$subscriberLastName = $row->getData('subscriber_lastname');
|
13 |
$customerLastName = $row->getData('customer_lastname');
|
14 |
+
if($customerLastName){
|
|
|
|
|
15 |
return $customerLastName;
|
16 |
+
}elseif($subscriberLastName){
|
17 |
+
return $subscriberLastName;
|
18 |
}else{
|
19 |
return '----';
|
20 |
}
|
@@ -215,6 +215,17 @@ class Ebizmarts_MageMonkey_Block_Lists extends Mage_Core_Block_Template
|
|
215 |
return $this->_info[$listId];
|
216 |
}
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
/**
|
219 |
* Render interest grouping with its groups
|
220 |
*
|
@@ -255,7 +266,7 @@ class Ebizmarts_MageMonkey_Block_Lists extends Mage_Core_Block_Template
|
|
255 |
}
|
256 |
}
|
257 |
if (isset($groupings)) {
|
258 |
-
|
259 |
}
|
260 |
}
|
261 |
}
|
215 |
return $this->_info[$listId];
|
216 |
}
|
217 |
|
218 |
+
public function hasGroupSelected($group){
|
219 |
+
$ret = false;
|
220 |
+
foreach($group['groups'] as $g){
|
221 |
+
if($this->_groupAllowed($g['name'])){
|
222 |
+
$ret = true;
|
223 |
+
}
|
224 |
+
}
|
225 |
+
return $ret;
|
226 |
+
|
227 |
+
}
|
228 |
+
|
229 |
/**
|
230 |
* Render interest grouping with its groups
|
231 |
*
|
266 |
}
|
267 |
}
|
268 |
if (isset($groupings)) {
|
269 |
+
$myGroups = $this->_setGrouping($groupings,$fieldType,$myGroups);
|
270 |
}
|
271 |
}
|
272 |
}
|
@@ -415,22 +415,24 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
|
|
415 |
$merge_vars = $this->_setMaps($maps,$customer,$merge_vars, $websiteId);
|
416 |
|
417 |
//GUEST
|
|
|
418 |
if (!$customer->getId() && !$request->getPost('firstname')) {
|
419 |
-
if($customer->
|
420 |
-
$guestFirstName = $customer->getSubscriberFirstname();
|
421 |
-
}else{
|
422 |
$guestFirstName = $this->config('guest_name', $customer->getStoreId());
|
|
|
|
|
423 |
}
|
424 |
|
425 |
if ($guestFirstName) {
|
426 |
$merge_vars['FNAME'] = $guestFirstName;
|
427 |
}
|
428 |
}
|
|
|
429 |
if (!$customer->getId() && !$request->getPost('lastname')) {
|
430 |
-
if($customer->
|
431 |
-
$guestLastName = $customer->getSubscriberLastname();
|
432 |
-
}else {
|
433 |
$guestLastName = $this->config('guest_lastname', $customer->getStoreId());
|
|
|
|
|
434 |
}
|
435 |
|
436 |
if ($guestLastName) {
|
@@ -477,7 +479,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
|
|
477 |
$merge_vars = array_merge($merge_vars, $blank->toArray());
|
478 |
}
|
479 |
//magemonkey_mergevars_after
|
480 |
-
|
481 |
return $merge_vars;
|
482 |
}
|
483 |
private function _setMaps($maps,$customer,$merge_vars, $websiteId)
|
@@ -555,7 +556,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
|
|
555 |
}
|
556 |
break;
|
557 |
default:
|
558 |
-
|
559 |
if (($value = (string)$customer->getData(strtolower($customAtt)))
|
560 |
OR ($value = (string)$request->getPost(strtolower($customAtt)))
|
561 |
) {
|
@@ -653,7 +653,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
|
|
653 |
//if post exists && is not admin backend subscription && not footer subscription
|
654 |
$this->_checkGrouping($mergeVars,$post,$currentList, $object);
|
655 |
|
656 |
-
|
657 |
return $mergeVars;
|
658 |
}
|
659 |
private function _checkGrouping($merge_vars,$post,$currentList, $object)
|
@@ -960,7 +959,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
|
|
960 |
}
|
961 |
|
962 |
$mergeVars = Mage::helper('monkey')->mergeVars($object, FALSE, $listId);
|
963 |
-
|
964 |
$this->_subscribe($listId, $email, $mergeVars, $isConfirmNeed, $db);
|
965 |
}
|
966 |
}
|
415 |
$merge_vars = $this->_setMaps($maps,$customer,$merge_vars, $websiteId);
|
416 |
|
417 |
//GUEST
|
418 |
+
$guestFirstName = '';
|
419 |
if (!$customer->getId() && !$request->getPost('firstname')) {
|
420 |
+
if($this->config('guest_name', $customer->getStoreId())){
|
|
|
|
|
421 |
$guestFirstName = $this->config('guest_name', $customer->getStoreId());
|
422 |
+
}elseif($customer->getSubscriberFirstname()) {
|
423 |
+
$guestFirstName = $customer->getSubscriberFirstname();
|
424 |
}
|
425 |
|
426 |
if ($guestFirstName) {
|
427 |
$merge_vars['FNAME'] = $guestFirstName;
|
428 |
}
|
429 |
}
|
430 |
+
$guestLastName = '';
|
431 |
if (!$customer->getId() && !$request->getPost('lastname')) {
|
432 |
+
if($this->config('guest_lastname', $customer->getStoreId())){
|
|
|
|
|
433 |
$guestLastName = $this->config('guest_lastname', $customer->getStoreId());
|
434 |
+
}elseif($customer->getSubscriberLastname()){
|
435 |
+
$guestLastName = $customer->getSubscriberLastname();
|
436 |
}
|
437 |
|
438 |
if ($guestLastName) {
|
479 |
$merge_vars = array_merge($merge_vars, $blank->toArray());
|
480 |
}
|
481 |
//magemonkey_mergevars_after
|
|
|
482 |
return $merge_vars;
|
483 |
}
|
484 |
private function _setMaps($maps,$customer,$merge_vars, $websiteId)
|
556 |
}
|
557 |
break;
|
558 |
default:
|
|
|
559 |
if (($value = (string)$customer->getData(strtolower($customAtt)))
|
560 |
OR ($value = (string)$request->getPost(strtolower($customAtt)))
|
561 |
) {
|
653 |
//if post exists && is not admin backend subscription && not footer subscription
|
654 |
$this->_checkGrouping($mergeVars,$post,$currentList, $object);
|
655 |
|
|
|
656 |
return $mergeVars;
|
657 |
}
|
658 |
private function _checkGrouping($merge_vars,$post,$currentList, $object)
|
959 |
}
|
960 |
|
961 |
$mergeVars = Mage::helper('monkey')->mergeVars($object, FALSE, $listId);
|
|
|
962 |
$this->_subscribe($listId, $email, $mergeVars, $isConfirmNeed, $db);
|
963 |
}
|
964 |
}
|
@@ -29,7 +29,7 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
29 |
$subscriber = $observer->getEvent()->getSubscriber();
|
30 |
$defaultList = Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_LIST, $subscriber->getStoreId());
|
31 |
if($subscriber->getOrigData('subscriber_status') != 3 && $subscriber->getData('subscriber_status') == 3){
|
32 |
-
Mage::getSingleton('monkey/api')->listUnsubscribe($defaultList, $subscriber->getSubscriberEmail());
|
33 |
}
|
34 |
if (!Mage::helper('monkey')->isAdmin() &&
|
35 |
(Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $subscriber->getStoreId()) == 1 && Mage::helper('monkey')->subscribedToList($subscriber->getSubscriberEmail(), $defaultList))
|
@@ -43,10 +43,14 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
43 |
return $observer;
|
44 |
}
|
45 |
|
46 |
-
if
|
|
|
47 |
return $observer;
|
48 |
}
|
49 |
|
|
|
|
|
|
|
50 |
if (TRUE === $subscriber->getIsStatusChanged()) {
|
51 |
Mage::getSingleton('core/session')->setIsHandleSubscriber(TRUE);
|
52 |
if (Mage::getSingleton('core/session')->getIsOneStepCheckout() || Mage::getSingleton('core/session')->getMonkeyCheckout()) {
|
@@ -341,6 +345,7 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
341 |
*/
|
342 |
public function updateCustomer(Varien_Event_Observer $observer)
|
343 |
{
|
|
|
344 |
if (!Mage::helper('monkey')->canMonkey()) {
|
345 |
return $observer;
|
346 |
}
|
@@ -358,22 +363,16 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
358 |
if(!$isCheckout) {
|
359 |
$oldEmail = $customer->getOrigData('email');
|
360 |
$email = $customer->getEmail();
|
361 |
-
if (Mage::getSingleton('core/session')->getMonkeyCheckout()) {
|
362 |
-
$saveOnDb = Mage::helper('monkey')->config('checkout_async');
|
363 |
-
} else {
|
364 |
-
$saveOnDb = 0;
|
365 |
-
}
|
366 |
$defaultList = Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_LIST, $customer->getStoreId());
|
367 |
if (!$oldEmail) {
|
368 |
$subscriber = Mage::getSingleton('newsletter/subscriber')->loadByEmail($email);
|
369 |
$monkeyPost = unserialize(Mage::getSingleton('core/session')->getMonkeyPost());
|
370 |
if (!Mage::helper('monkey')->subscribedToList($email, $defaultList) && !$isAdmin && ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED || $subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_UNCONFIRMED) || $monkeyPost) {
|
371 |
-
Mage::helper('monkey')->subscribeToList($customer,
|
372 |
//$api->listSubscribe($defaultList, $customer->getEmail(), $mergeVars, $isConfirmNeed);
|
373 |
}
|
374 |
} else {
|
375 |
|
376 |
-
|
377 |
Mage::getSingleton('core/session')->setIsUpdateCustomer(TRUE);
|
378 |
//subscribe to MailChimp newsletter
|
379 |
$api = Mage::getSingleton('monkey/api', array('store' => $customer->getStoreId()));
|
@@ -381,7 +380,7 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
381 |
$subscriber = Mage::getModel('newsletter/subscriber')
|
382 |
->loadByEmail($customer->getEmail());
|
383 |
if ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED && !$isAdmin) {
|
384 |
-
Mage::helper('monkey')->listsSubscription($customer, $post,
|
385 |
}
|
386 |
$lists = $api->listsForEmail($oldEmail);
|
387 |
if (is_array($lists)) {
|
@@ -393,20 +392,20 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
393 |
|
394 |
//subscribe to MailChimp when customer subscribed from admin
|
395 |
//unsubscribe from Magento when customer unsubscribed from admin
|
396 |
-
if ($isAdmin) {
|
397 |
-
if ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED && !$customer->getData('is_subscribed')) {
|
398 |
-
$subscriber->setImportMode(TRUE)->unsubscribe();
|
399 |
-
Mage::getSingleton('monkey/api', array('store' => $customer->getStoreId()))->listUnsubscribe($defaultList, $customer->getEmail());
|
400 |
-
} else {
|
401 |
-
if($customer->getData('is_subscribed')) {
|
402 |
-
Mage::getModel('newsletter/subscriber')
|
403 |
-
->setSubscriberEmail($customer->getEmail())
|
404 |
-
->setStoreId($customer->getStoreId())
|
405 |
-
->setImportMode(TRUE)
|
406 |
-
->subscribe($customer->getEmail());
|
407 |
-
}
|
408 |
-
}
|
409 |
-
}
|
410 |
Mage::getSingleton('core/session')->setIsUpdateCustomer(FALSE);
|
411 |
}
|
412 |
}
|
@@ -438,6 +437,7 @@ class Ebizmarts_MageMonkey_Model_Observer
|
|
438 |
}
|
439 |
if ($oneStep) {
|
440 |
Mage::getSingleton('core/session')->setIsOneStepCheckout(true);
|
|
|
441 |
}
|
442 |
return $observer;
|
443 |
}
|
29 |
$subscriber = $observer->getEvent()->getSubscriber();
|
30 |
$defaultList = Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_LIST, $subscriber->getStoreId());
|
31 |
if($subscriber->getOrigData('subscriber_status') != 3 && $subscriber->getData('subscriber_status') == 3){
|
32 |
+
Mage::getSingleton('monkey/api', array('store' => $subscriber->getStoreId()))->listUnsubscribe($defaultList, $subscriber->getSubscriberEmail());
|
33 |
}
|
34 |
if (!Mage::helper('monkey')->isAdmin() &&
|
35 |
(Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $subscriber->getStoreId()) == 1 && Mage::helper('monkey')->subscribedToList($subscriber->getSubscriberEmail(), $defaultList))
|
43 |
return $observer;
|
44 |
}
|
45 |
|
46 |
+
if((Mage::getSingleton('core/session')->getIsOneStepCheckout() || Mage::getSingleton('core/session')->getMonkeyCheckout()) && !Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CHECKOUT_SUBSCRIBE, $subscriber->getStoreId()))
|
47 |
+
{
|
48 |
return $observer;
|
49 |
}
|
50 |
|
51 |
+
if (Mage::getSingleton('core/session')->getIsOneStepCheckout() && !Mage::getSingleton('core/session')->getMonkeyCheckout()) {
|
52 |
+
return $observer;
|
53 |
+
}
|
54 |
if (TRUE === $subscriber->getIsStatusChanged()) {
|
55 |
Mage::getSingleton('core/session')->setIsHandleSubscriber(TRUE);
|
56 |
if (Mage::getSingleton('core/session')->getIsOneStepCheckout() || Mage::getSingleton('core/session')->getMonkeyCheckout()) {
|
345 |
*/
|
346 |
public function updateCustomer(Varien_Event_Observer $observer)
|
347 |
{
|
348 |
+
|
349 |
if (!Mage::helper('monkey')->canMonkey()) {
|
350 |
return $observer;
|
351 |
}
|
363 |
if(!$isCheckout) {
|
364 |
$oldEmail = $customer->getOrigData('email');
|
365 |
$email = $customer->getEmail();
|
|
|
|
|
|
|
|
|
|
|
366 |
$defaultList = Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_LIST, $customer->getStoreId());
|
367 |
if (!$oldEmail) {
|
368 |
$subscriber = Mage::getSingleton('newsletter/subscriber')->loadByEmail($email);
|
369 |
$monkeyPost = unserialize(Mage::getSingleton('core/session')->getMonkeyPost());
|
370 |
if (!Mage::helper('monkey')->subscribedToList($email, $defaultList) && !$isAdmin && ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED || $subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_UNCONFIRMED) || $monkeyPost) {
|
371 |
+
Mage::helper('monkey')->subscribeToList($customer, 0);
|
372 |
//$api->listSubscribe($defaultList, $customer->getEmail(), $mergeVars, $isConfirmNeed);
|
373 |
}
|
374 |
} else {
|
375 |
|
|
|
376 |
Mage::getSingleton('core/session')->setIsUpdateCustomer(TRUE);
|
377 |
//subscribe to MailChimp newsletter
|
378 |
$api = Mage::getSingleton('monkey/api', array('store' => $customer->getStoreId()));
|
380 |
$subscriber = Mage::getModel('newsletter/subscriber')
|
381 |
->loadByEmail($customer->getEmail());
|
382 |
if ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED && !$isAdmin) {
|
383 |
+
Mage::helper('monkey')->listsSubscription($customer, $post, 0);
|
384 |
}
|
385 |
$lists = $api->listsForEmail($oldEmail);
|
386 |
if (is_array($lists)) {
|
392 |
|
393 |
//subscribe to MailChimp when customer subscribed from admin
|
394 |
//unsubscribe from Magento when customer unsubscribed from admin
|
395 |
+
// if ($isAdmin) {
|
396 |
+
// if ($subscriber->getStatus() == Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED && !$customer->getData('is_subscribed')) {
|
397 |
+
// $subscriber->setImportMode(TRUE)->unsubscribe();
|
398 |
+
// Mage::getSingleton('monkey/api', array('store' => $customer->getStoreId()))->listUnsubscribe($defaultList, $customer->getEmail());
|
399 |
+
// } else {
|
400 |
+
// if($customer->getData('is_subscribed')) {
|
401 |
+
// Mage::getModel('newsletter/subscriber')
|
402 |
+
// ->setSubscriberEmail($customer->getEmail())
|
403 |
+
// ->setStoreId($customer->getStoreId())
|
404 |
+
// ->setImportMode(TRUE)
|
405 |
+
// ->subscribe($customer->getEmail());
|
406 |
+
// }
|
407 |
+
// }
|
408 |
+
// }
|
409 |
Mage::getSingleton('core/session')->setIsUpdateCustomer(FALSE);
|
410 |
}
|
411 |
}
|
437 |
}
|
438 |
if ($oneStep) {
|
439 |
Mage::getSingleton('core/session')->setIsOneStepCheckout(true);
|
440 |
+
Mage::getSingleton('core/session')->setMonkeyCheckout(true);
|
441 |
}
|
442 |
return $observer;
|
443 |
}
|
@@ -172,7 +172,7 @@ class Ebizmarts_MageMonkey_Adminhtml_EcommerceController extends Mage_Adminhtml_
|
|
172 |
switch ($this->getRequest()->getActionName()) {
|
173 |
case 'index':
|
174 |
case 'grid':
|
175 |
-
case '
|
176 |
case 'massDelete':
|
177 |
$acl = 'newsletter/magemonkey/ecommerce/commerce';
|
178 |
break;
|
@@ -183,6 +183,8 @@ class Ebizmarts_MageMonkey_Adminhtml_EcommerceController extends Mage_Adminhtml_
|
|
183 |
case 'resetRemoteEcommerce':
|
184 |
$acl = 'system/config/monkey';
|
185 |
break;
|
|
|
|
|
186 |
}
|
187 |
return Mage::getSingleton('admin/session')->isAllowed($acl);
|
188 |
}
|
172 |
switch ($this->getRequest()->getActionName()) {
|
173 |
case 'index':
|
174 |
case 'grid':
|
175 |
+
case 'masssend':
|
176 |
case 'massDelete':
|
177 |
$acl = 'newsletter/magemonkey/ecommerce/commerce';
|
178 |
break;
|
183 |
case 'resetRemoteEcommerce':
|
184 |
$acl = 'system/config/monkey';
|
185 |
break;
|
186 |
+
case 'masssend':
|
187 |
+
$acl = 'sales/orders';
|
188 |
}
|
189 |
return Mage::getSingleton('admin/session')->isAllowed($acl);
|
190 |
}
|
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_MageMonkey>
|
13 |
-
<version>1.1.
|
14 |
</Ebizmarts_MageMonkey>
|
15 |
</modules>
|
16 |
<global>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Ebizmarts_MageMonkey>
|
13 |
+
<version>1.1.35</version>
|
14 |
</Ebizmarts_MageMonkey>
|
15 |
</modules>
|
16 |
<global>
|
@@ -69,7 +69,9 @@ class Ebizmarts_Mandrill_Model_Email_Template extends Mage_Core_Model_Email_Temp
|
|
69 |
|
70 |
$email['from_name'] = $this->getSenderName();
|
71 |
$email['from_email'] = $this->getSenderEmail();
|
72 |
-
$
|
|
|
|
|
73 |
if (isset($variables['tags']) && count($variables['tags'])) {
|
74 |
$email ['tags'] = $variables['tags'];
|
75 |
}
|
69 |
|
70 |
$email['from_name'] = $this->getSenderName();
|
71 |
$email['from_email'] = $this->getSenderEmail();
|
72 |
+
$headers = $mail->getHeaders();
|
73 |
+
$headers[] = Mage::helper('ebizmarts_mandrill')->getUserAgent();
|
74 |
+
$email['headers'] = $headers;
|
75 |
if (isset($variables['tags']) && count($variables['tags'])) {
|
76 |
$email ['tags'] = $variables['tags'];
|
77 |
}
|
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Ebizmarts_Mandrill>
|
5 |
-
<version>2.0.
|
6 |
</Ebizmarts_Mandrill>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Ebizmarts_Mandrill>
|
5 |
+
<version>2.0.7</version>
|
6 |
</Ebizmarts_Mandrill>
|
7 |
</modules>
|
8 |
<global>
|
@@ -17,15 +17,14 @@ class Ebizmarts_SweetMonkey_Model_Cron
|
|
17 |
{
|
18 |
$allStores = Mage::app()->getStores();
|
19 |
foreach ($allStores as $storeId => $val) {
|
20 |
-
if (Mage::getStoreConfig(
|
21 |
-
|
22 |
$customers = Mage::getModel('rewards/customer')->getCollection()
|
23 |
->addFieldToFilter('store_id', array('eq' => $storeId));
|
24 |
|
25 |
foreach ($customers as $c) {
|
26 |
-
if (!Mage::helper('rewards/expiry')->isEnabled($c->getStoreId())) {
|
27 |
continue;
|
28 |
-
}
|
29 |
|
30 |
$customer = Mage::getModel('rewards/customer')->load($c->getId());
|
31 |
Mage::helper('sweetmonkey')->pushVars($customer);
|
17 |
{
|
18 |
$allStores = Mage::app()->getStores();
|
19 |
foreach ($allStores as $storeId => $val) {
|
20 |
+
if (Mage::getStoreConfig('sweetmonkey/general/active', $storeId)) {
|
|
|
21 |
$customers = Mage::getModel('rewards/customer')->getCollection()
|
22 |
->addFieldToFilter('store_id', array('eq' => $storeId));
|
23 |
|
24 |
foreach ($customers as $c) {
|
25 |
+
/*if (!Mage::helper('rewards/expiry')->isEnabled($c->getStoreId())) {
|
26 |
continue;
|
27 |
+
}*/
|
28 |
|
29 |
$customer = Mage::getModel('rewards/customer')->load($c->getId());
|
30 |
Mage::helper('sweetmonkey')->pushVars($customer);
|
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Ebizmarts_SweetMonkey>
|
5 |
-
<version>1.1.
|
6 |
</Ebizmarts_SweetMonkey>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Ebizmarts_SweetMonkey>
|
5 |
+
<version>1.1.11</version>
|
6 |
</Ebizmarts_SweetMonkey>
|
7 |
</modules>
|
8 |
<global>
|
@@ -9,5 +9,6 @@
|
|
9 |
extension to use this extension
|
10 |
</div>
|
11 |
<?php endif; ?>
|
|
|
12 |
</h4>
|
13 |
</div>
|
9 |
extension to use this extension
|
10 |
</div>
|
11 |
<?php endif; ?>
|
12 |
+
<h3><a style="padding-top: 5px;padding-bottom:5px;padding-left: 30px;padding-right: 30px;background-color:#D75F07 ;color:white;font-weight: bold" href="http://www.mailchimp.com/signup?pid=ebizmarts&source=website" target="_blank">Support MageMonkey, Subscribe for a free MailChimp Account!</a> </h3>
|
13 |
</h4>
|
14 |
</div>
|
@@ -10,5 +10,6 @@
|
|
10 |
extension to use this extension
|
11 |
</div>
|
12 |
<?php endif; ?>
|
|
|
13 |
</h4>
|
14 |
</div>
|
10 |
extension to use this extension
|
11 |
</div>
|
12 |
<?php endif; ?>
|
13 |
+
<h3><a style="padding-top: 5px;padding-bottom:5px;padding-left: 30px;padding-right: 30px;background-color:#D75F07 ;color:white;font-weight: bold" href="http://www.mailchimp.com/signup?pid=ebizmarts&source=website" target="_blank">Support MageMonkey, Subscribe for a free MailChimp Account!</a> </h3>
|
14 |
</h4>
|
15 |
</div>
|
@@ -5,4 +5,5 @@
|
|
5 |
<br>
|
6 |
<?php echo $this->__('Need help? See our <a href="http://wiki.ebizmarts.com/installation" target="_blank">Wiki</a> or browse our <a href="http://ebizmarts.com/forums/view/1" target="_blank">support forums</a> Got feedback? <a href="mailto:info@ebizmarts.com?Subject=MageMonkey Version %s">Email us</a>', $this->getMandrillVersion()) ?>
|
7 |
</h4>
|
|
|
8 |
</div>
|
5 |
<br>
|
6 |
<?php echo $this->__('Need help? See our <a href="http://wiki.ebizmarts.com/installation" target="_blank">Wiki</a> or browse our <a href="http://ebizmarts.com/forums/view/1" target="_blank">support forums</a> Got feedback? <a href="mailto:info@ebizmarts.com?Subject=MageMonkey Version %s">Email us</a>', $this->getMandrillVersion()) ?>
|
7 |
</h4>
|
8 |
+
<h3><a style="padding-top: 5px;padding-bottom:5px;padding-left: 30px;padding-right: 30px;background-color:#D75F07 ;color:white;font-weight: bold" href="http://www.mailchimp.com/signup?pid=ebizmarts&source=website" target="_blank">Support MageMonkey, Subscribe for a free MailChimp Account!</a> </h3>
|
9 |
</div>
|
@@ -10,4 +10,5 @@
|
|
10 |
<br>
|
11 |
<?php echo Mage::helper('monkey')->__('Need help? See our <a href="http://wiki.ebizmarts.com/installation" target="_blank">Wiki</a> or browse our <a href="http://ebizmarts.com/forums/view/1" target="_blank">support forums</a> Got feedback? <a href="mailto:info@ebizmarts.com?Subject=MageMonkey Version %s">Email us</a>', $this->getMageMonkeyVersion()) ?>
|
12 |
</h4>
|
|
|
13 |
</div>
|
10 |
<br>
|
11 |
<?php echo Mage::helper('monkey')->__('Need help? See our <a href="http://wiki.ebizmarts.com/installation" target="_blank">Wiki</a> or browse our <a href="http://ebizmarts.com/forums/view/1" target="_blank">support forums</a> Got feedback? <a href="mailto:info@ebizmarts.com?Subject=MageMonkey Version %s">Email us</a>', $this->getMageMonkeyVersion()) ?>
|
12 |
</h4>
|
13 |
+
<h3><a style="padding-top: 5px;padding-bottom:5px;padding-left: 30px;padding-right: 30px;background-color:#D75F07 ;color:white;font-weight: bold" href="http://www.mailchimp.com/signup?pid=ebizmarts&source=website" target="_blank">Support MageMonkey, Subscribe for a free MailChimp Account!</a> </h3>
|
14 |
</div>
|
@@ -8,4 +8,5 @@
|
|
8 |
<h4>
|
9 |
<?php echo $this->__('<strong style="color:#EA7601;">Sweet Monkey v%s by</strong> <a target="_blank" href="http://ebizmarts.com"><strong>ebizmarts</strong></a>', $this->getSweetMonkeyVersion()) ?>
|
10 |
</h4>
|
|
|
11 |
</div>
|
8 |
<h4>
|
9 |
<?php echo $this->__('<strong style="color:#EA7601;">Sweet Monkey v%s by</strong> <a target="_blank" href="http://ebizmarts.com"><strong>ebizmarts</strong></a>', $this->getSweetMonkeyVersion()) ?>
|
10 |
</h4>
|
11 |
+
<h3><a style="padding-top: 5px;padding-bottom:5px;padding-left: 30px;padding-right: 30px;background-color:#D75F07 ;color:white;font-weight: bold" href="http://www.mailchimp.com/signup?pid=ebizmarts&source=website" target="_blank">Support MageMonkey, Subscribe for a free MailChimp Account!</a> </h3>
|
12 |
</div>
|
@@ -43,8 +43,8 @@
|
|
43 |
<?php if(isset($_COOKIE['email'])):
|
44 |
if($_COOKIE['email'] != 'none'):
|
45 |
Print(json_decode($this->_handleCookie()));
|
46 |
-
|
47 |
-
|
48 |
// if(isset($_COOKIE['subscribe'])):
|
49 |
// $subscriber = Mage::getModel('newsletter/subscriber')->loadByEmail($email);
|
50 |
// if(!$subscriber->getId()):
|
@@ -110,8 +110,14 @@
|
|
110 |
var inputFieldFName = $$('.fname_input input[type=text]').first();
|
111 |
var inputFieldLName = $$('.lname_input input[type=text]').first();
|
112 |
var email = inputFieldEmail.value;
|
113 |
-
var fname =
|
114 |
-
var lname =
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
if (validateEmail(email)) {
|
116 |
var cookie = 'email=' + email + '/' + fname + '/' + lname;
|
117 |
createCookie(cookie, 365);
|
43 |
<?php if(isset($_COOKIE['email'])):
|
44 |
if($_COOKIE['email'] != 'none'):
|
45 |
Print(json_decode($this->_handleCookie()));
|
46 |
+
$cookie = str_replace(' ', '+', $_COOKIE['email']);
|
47 |
+
$this->_createCoupon($cookie);
|
48 |
// if(isset($_COOKIE['subscribe'])):
|
49 |
// $subscriber = Mage::getModel('newsletter/subscriber')->loadByEmail($email);
|
50 |
// if(!$subscriber->getId()):
|
110 |
var inputFieldFName = $$('.fname_input input[type=text]').first();
|
111 |
var inputFieldLName = $$('.lname_input input[type=text]').first();
|
112 |
var email = inputFieldEmail.value;
|
113 |
+
var fname = '';
|
114 |
+
var lname = '';
|
115 |
+
if(inputFieldFName) {
|
116 |
+
fname = inputFieldFName.value;
|
117 |
+
}
|
118 |
+
if(inputFieldLName) {
|
119 |
+
lname = inputFieldLName.value;
|
120 |
+
}
|
121 |
if (validateEmail(email)) {
|
122 |
var cookie = 'email=' + email + '/' + fname + '/' + lname;
|
123 |
createCookie(cookie, 365);
|
@@ -127,7 +127,7 @@ $force = $this->getForce();
|
|
127 |
<?php if (is_array($generalList['interest_groupings']) && $this->getCanModify() == 1): ?>
|
128 |
<div id="interest_groupings_<?php echo $generalList['id']; ?>" class="interest-groupings">
|
129 |
<?php foreach ($generalList['interest_groupings'] as $group): ?>
|
130 |
-
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS'): ?>
|
131 |
<div class="grouping">
|
132 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
133 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
@@ -160,7 +160,7 @@ $force = $this->getForce();
|
|
160 |
<?php if (is_array($igroups)): ?>
|
161 |
<div id="interest_groupings_<?php echo $list['id']; ?>" class="interest-groupings">
|
162 |
<?php foreach ($igroups as $group): ?>
|
163 |
-
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS'): ?>
|
164 |
<div class="grouping">
|
165 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
166 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
127 |
<?php if (is_array($generalList['interest_groupings']) && $this->getCanModify() == 1): ?>
|
128 |
<div id="interest_groupings_<?php echo $generalList['id']; ?>" class="interest-groupings">
|
129 |
<?php foreach ($generalList['interest_groupings'] as $group): ?>
|
130 |
+
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS' && $this->hasGroupSelected($group)): ?>
|
131 |
<div class="grouping">
|
132 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
133 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
160 |
<?php if (is_array($igroups)): ?>
|
161 |
<div id="interest_groupings_<?php echo $list['id']; ?>" class="interest-groupings">
|
162 |
<?php foreach ($igroups as $group): ?>
|
163 |
+
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS' && $this->hasGroupSelected($group)): ?>
|
164 |
<div class="grouping">
|
165 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
166 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
@@ -25,7 +25,7 @@ $canmodify = $this->getCanModify();
|
|
25 |
|
26 |
<div id="interest_groupings_<?php echo $generalList['id']; ?>" class="interest-groupings">
|
27 |
<?php foreach ($generalList['interest_groupings'] as $group): ?>
|
28 |
-
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS'): ?>
|
29 |
<div class="grouping" <?php if (!$canmodify) echo 'style="display: none;"' ?>>
|
30 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
31 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
@@ -55,7 +55,7 @@ $canmodify = $this->getCanModify();
|
|
55 |
<?php if ($igroups && is_array($igroups)): ?>
|
56 |
<div id="interest_groupings_<?php echo $list['id']; ?>" class="interest-groupings">
|
57 |
<?php foreach ($igroups as $group): ?>
|
58 |
-
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS'): ?>
|
59 |
<div class="grouping">
|
60 |
<strong><?php echo $group['name']; ?></strong>
|
61 |
<?php echo $this->renderGroup($group, $list); ?>
|
25 |
|
26 |
<div id="interest_groupings_<?php echo $generalList['id']; ?>" class="interest-groupings">
|
27 |
<?php foreach ($generalList['interest_groupings'] as $group): ?>
|
28 |
+
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS' && $this->hasGroupSelected($group)): ?>
|
29 |
<div class="grouping" <?php if (!$canmodify) echo 'style="display: none;"' ?>>
|
30 |
<?php if ($group['form_field'] != 'hidden'): ?>
|
31 |
<strong><?php echo $group['name']; ?></strong><?php endif; ?>
|
55 |
<?php if ($igroups && is_array($igroups)): ?>
|
56 |
<div id="interest_groupings_<?php echo $list['id']; ?>" class="interest-groupings">
|
57 |
<?php foreach ($igroups as $group): ?>
|
58 |
+
<?php if ($group['name'] != 'MAGE_CUSTOMER_GROUPS' && $this->hasGroupSelected($group)): ?>
|
59 |
<div class="grouping">
|
60 |
<strong><?php echo $group['name']; ?></strong>
|
61 |
<?php echo $this->renderGroup($group, $list); ?>
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
;Config settings
|
2 |
+
"Enabled","Ingeschakeld"
|
3 |
+
"Sender","Afzender"
|
4 |
+
"Email Template","Email template"
|
5 |
+
"Email Template With Coupon","Email template met coupon"
|
6 |
+
"Send email after","Stuur email na"
|
7 |
+
"Max number of email to send","Maximaal aantal emails te versturen"
|
8 |
+
"Create Coupon?","Coupon aanmaken?"
|
9 |
+
"On email number?","Op email nummer?"
|
10 |
+
"Expire on","Verloopt op"
|
11 |
+
"Coupon length","Coupon lengte"
|
12 |
+
"Discount type","Type korting"
|
13 |
+
"Discount amount","Hoogte van de korting"
|
14 |
+
"Label for coupon","Label voor coupon"
|
15 |
+
"Days","Dagen"
|
16 |
+
"Max","Max",
|
17 |
+
"The coupon will be created on the email number","De coupon zal op het email nummer worden aangemaakt"
|
18 |
+
"The coupon expiration in days","De coupon zal verlopen in zoveel dagen"
|
19 |
+
"Select percentage or fixed discount","Selecteer percentage of vaste korting"
|
20 |
+
;Config values
|
21 |
+
"Fixed amount","Vaste hoeveelheid"
|
22 |
+
"Percentage","Percentage"
|
23 |
+
|
24 |
+
;Dashboard
|
25 |
+
"Lifetime Generate Revenue","Levenslange gerealiseerde omzet"
|
26 |
+
"Average Orders","Gemiddelde bestellingen"
|
27 |
+
"Generated","Gegenereerd"
|
28 |
+
"Generated Revenue","Gegenereerde omzet"
|
29 |
+
"Generated Tax","Gegenereerde belasting"
|
30 |
+
"Generated Shipping","Gegenereerde verzendkosten"
|
31 |
+
"Generated Orders","Gegenereerde bestellingen"
|
32 |
+
"Generated Conv. Rate","Gegenereerde conversie ratio"
|
33 |
+
"Emails","Emails"
|
34 |
+
"Emails Sent","Verstuurde emails"
|
35 |
+
"Emails Received","Ontvangen emails"
|
36 |
+
"Emails Opened","Geopende emails"
|
37 |
+
"Emails Clicked","Geklikte emails"
|
38 |
+
"Abandoned Cart Dashboard (Ebizmarts)","Verlaten winkelwagen dashboard (Ebizmarts)"
|
39 |
+
"You may obtain more statistics if enable and configure","Je kunt meer statistieken verkgijgen wanneer ingeschakeld en geconfigureerd"
|
40 |
+
"extension","extensie"
|
41 |
+
|
42 |
+
;Menus
|
43 |
+
"Abandoned Cart Dashboard","Verlaten winkelwagen dashboard"
|
44 |
+
"Abandoned Cart Orders","Verlaten winkelwagen bestellingen"
|
45 |
+
"Ebizmarts Abandoned Cart","Ebizmarts verlaten winkelwagen"
|
46 |
+
|
47 |
+
;Emailcatcher popup
|
48 |
+
"Confirm","Bevestig"
|
49 |
+
"Close","Sluit"
|
50 |
+
"Not a valid e-mail address","Dit is een ongeldig e-mail adres"
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
;Config settings
|
2 |
+
"MageMonkey - MailChimp integration by ebizmarts", "MageMonkey - MailChimp integratie door ebizmarts"
|
3 |
+
"Get a free MailChimp account now","Verkrijg nu een gratis MailChimp account"
|
4 |
+
"<a href=\"http://mailchimp.com/signup/?pid=ebizmart&source=website\" target=\"_blank\">Verkrijg nu een gratis MailChimp account</a>",""
|
5 |
+
"Enabled","Ingeschakeld"
|
6 |
+
"API Key","API sleutel"
|
7 |
+
"Get API credentials","Verkrijg API gegevens"
|
8 |
+
"General Subscription","Algemeen lidmaatschap"
|
9 |
+
"Your MailChimp API Key.<br/><a target ='_blank' href ='http://kb.mailchimp.com/article/where-can-i-find-my-api-key/'>Where can I find my API Key?</a>","Je MailChimp API sleutel.<br/><a target ='_blank' href ='http://kb.mailchimp.com/article/where-can-i-find-my-api-key/'>Waar kan ik mijn API sleutel vinden?</a>"
|
10 |
+
"Trial mode: Whether the Account is in Trial mode (can only send campaigns to less than 100 emails).<br/><a target='_blank' href='http://mailchimp.com/pricing/'>More about MailChimp plans.</a>", "Test mode: Of het account in test modus is (alleen mogelijk om campagnes te versturen naar minder dan 100 email adressen).<br/><a target='_blank' href='http://mailchimp.com/pricing/'>Meer over MailChimp abbonementen.</a>"
|
11 |
+
"Synchronize Magento's General Subscription List with this MailChimp list","Synchroniseer Magento's algemene lidmaatschap lijst met deze MailChimp lijst"
|
12 |
+
"All selected lists will be available to customers as additionals lists","Alle geselecteerde lijsten zullen beschikbaar zijn voor klanten als additionele lijsten"
|
13 |
+
"Additional Lists","Additionele lijsten"
|
14 |
+
"Double opt-in","Dubbele opt-in"
|
15 |
+
"<b>IMPORTANT</b>: Should be set to <b>Yes</b>. Abusing this may cause your account to be suspended.<br/><a target='_blank' href='http://kb.mailchimp.com/article/how-does-confirmed-optin-or-double-optin-work/'>How does double opt-in work?</a>","<b>BELANGRIJK</b>: Stel in op <b>Ja</b>. Misbruik kan ervoor zorgen dat je account uitgeschakeld wordt.<br/><a target='_blank' href='http://kb.mailchimp.com/article/how-does-confirmed-optin-or-double-optin-work/'>Hoe werkt dubbele opt-in?</a>"
|
16 |
+
"Enable Ecommerce360 for", "Ecommerce360 inschakelen voor"
|
17 |
+
"Send new orders to MailChimp using Ecommerce360.<br/><a target='_blank' href='http://kb.mailchimp.com/article/how-do-i-turn-on-ecommerce360-tracking-on-my-campaigns/'>How do I turn on Ecommerce360 tracking on my campaigns?</a>", "Stuur nieuwe bestellingen naar MailChimp via Ecommerce360.<br/><a target='_blank' href='http://kb.mailchimp.com/article/how-do-i-turn-on-ecommerce360-tracking-on-my-campaigns/'>Hoe schakel ik Ecommerce360 in voor mijn campagnes?</a>"
|
18 |
+
"Customer Fields Mapping", "Veldmapping voor klant"
|
19 |
+
"<a target=\"_blank\" href=\"http://kb.mailchimp.com/article/all-the-merge-tags-cheatsheet\">All The Merge Tags (Cheatsheet)</a>","<a target=\"_blank\" href=\"http://kb.mailchimp.com/article/all-the-merge-tags-cheatsheet\">Alle merge tags (cheatsheet)</a>"
|
20 |
+
"First Name for Guests subscribers", "Voornaam voor gast inschrijvingen"
|
21 |
+
"This value will be sent as FNAME to MailChimp", "Deze waarde zal verstuurd worden als FNAME naar MailChimp"
|
22 |
+
"Last Name for Guests subscribers", "Achternaam voor gast inschrijvingen"
|
23 |
+
"This value will be sent as LNAME to MailChimp", "Deze waarde zal verstuurd worden als LNAME naar MailChimp"
|
24 |
+
|
25 |
+
;Notification messages
|
26 |
+
"MailChimp Cleaned Emails: %s %s at %s reason: %s","MailChimp opgeschoonde emails: %s %s op %s reden: %s"
|
27 |
+
"MailChimp Campaign Send: %s %s at %s","MailChimp verstuurde campagne: %s %s op %s"
|
28 |
+
"Confirmation request has been sent.","Bevestigings aanvraag is verstuurd."
|
29 |
+
|
30 |
+
;Additional translations
|
31 |
+
"members", "leden"
|
32 |
+
"Customer", "Klant"
|
33 |
+
"MailChimp", "MailChimp"
|
34 |
+
"Add field", "Veld toevoegen"
|
35 |
+
"Username:", "Gebruikersnaam:"
|
36 |
+
"Plan type:", "Lidmaatschap type:"
|
37 |
+
"Is in trial mode?:", "Is in test mode?:"
|
38 |
+
"Enabled - Checked by default", "Ingeschakeld - Standaard aangevinkt"
|
39 |
+
"Enabled - Not Checked by default", "Ingeschakeld - Niet standaard aangevinkt"
|
40 |
+
"Enabled - Force subscription not showing","Ingeschakeld - Forceer lidmaatschap niet getoond"
|
41 |
+
"Enabled - Force subscription", "Ingeschakeld - Forceer lidmaatschap"
|
42 |
+
"-- Disabled --", "-- Uitgeschakeld --"
|
43 |
+
"Could not add Webhook "%s" for list "%s", error code %s, %s","Kan de webhook "%s" voor lijst "%s" niet toevoegen, error code %s, %s"
|
44 |
+
"There is no List selected please save the configuration again","Er is geen lijst geselecteerd, sla de configuratie nog eens op"
|
45 |
+
"Subscriber Group","Inschrijvingen groep"
|
46 |
+
"Max amount of lists to show","Max aantal te tonen lijsten"
|
47 |
+
"Reset Local Ecommerce360","Lokale Ecommerce360 opnieuw instellen"
|
48 |
+
"Reset Remote Ecommerce360","Externe Ecommerce360 opnieuw instellen"
|
49 |
+
"Please click the button below to get your API key.","Klik op onderstaande knop om je API gegevens te ontvangen"
|
50 |
+
"Select carefully the correct scope","Selecteer de juiste scope"
|
51 |
+
"Keep in mind, all your orders in Mailchimp will be removed.<br>Select carefully the correct scope","Let op dat alle bestellingen in Mailchimp verwijderd worden.<br>Selecteer de juiste scope"
|
52 |
+
"Customer can change groups","Klant kan van groep veranderen"
|
53 |
+
"Show Original List Name","Toon orginele lijst naam"
|
54 |
+
"Show original name as it's configured in MailChimp or display <i>General Subscription</i> name for this list.","Toon originele naam zoals deze geconfigureerd is in MailChimp, of toon <i>Algemene inschrijving</i> als naam voor deze lijst."
|
55 |
+
"Use Magento's confirmation email","Gebruik Magento's standaard bevestigingsmail"
|
56 |
+
"Use Magento's confirmation email when user subscribes to Newsletter.","Gebruik de standaard Magento bevestigingsmail wanneer een gebruiker lid wordt van de nieuwsbrief"
|
57 |
+
"Subscribe On Checkout","Inschrijven bij afrekenen"
|
58 |
+
"Map field to mark","Map veld om te markeren"
|
59 |
+
"Field to distinguish if the user subscribe","Veld om te onderscheiden of de gebruiker lid is geworden"
|
60 |
+
"Limit of Customers to Import","Limiteer te importere klanten op"
|
61 |
+
"Limit of Customers to Export","Limiteer te exporteren klanten op"
|
62 |
+
"Webhooks Delete action","Webhook verwijder actie"
|
63 |
+
"Unsubscribe customers","Klanten uitschrijven"
|
64 |
+
"Delete customer account","Klant account verwijderen"
|
65 |
+
"Show Admin Notifications","Toon admin meldingen"
|
66 |
+
"Notifications related to campaigns sent, cleaned emails, etc","Meldingen gerelateerd aan verzonden campagnes, opgeruimde emails enzovoorts"
|
67 |
+
"Enable Log","Logging inschakelen"
|
68 |
+
"File is {{base_dir}}/var/log/MageMonkey_ApiCall.log","Te vinden op: {{base_dir}}/var/log/MageMonkey_ApiCall.log"
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Merge Vars", "Merge Variables"
|
2 |
+
"MailChimp Lists", "MailChimp lists"
|
3 |
+
"Enabled," "Enabled"
|
4 |
+
"Code", "Code"
|
5 |
+
"Label", "Label"
|
6 |
+
"Create the above merge vars", "Add variables above together"
|
7 |
+
"Get current vars", "Current variables retrieve"
|
8 |
+
"Delete", "Delete"
|
9 |
+
"Add field", "Add Field"
|
10 |
+
"Balance Point", "Bonus Balance"
|
11 |
+
"Point Expiration," "Bonus expiration date"
|
12 |
+
"Last time earning points", "Last date earned points"
|
13 |
+
"Last time spending points", "Last date issued points"
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
|
20 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
21 |
+
Je hebt een winkelwagen achtergelaten op {{var store.getFrontendName()}}.
|
22 |
+
We willen je graag helpen met het afrekenen. Heb je technische problemen? Dan kun je contact met ons opnemen via <a
|
23 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
24 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
25 |
+
<br>Je hebt toegang tot je winkelwagen via <a href="{{var url}}" style="color:#1E7EC8;">hier</a>.
|
26 |
+
{{depend couponcode}}
|
27 |
+
<br>Je kunt deze coupon code gebruiken: <b>{{var couponcode}}</b>
|
28 |
+
{{/depend}}
|
29 |
+
{{depend discount}}
|
30 |
+
en een korting krijgen van {{var discount}} tot {{var todate}}
|
31 |
+
{{/depend}}
|
32 |
+
{{depend points}}
|
33 |
+
<br/>Je hebt momenteel {{var points}} punten beschikbaar.
|
34 |
+
{{/depend}}
|
35 |
+
</p>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
<tr>
|
39 |
+
<td>
|
40 |
+
{{block type='ebizmarts_abandonedcart/email_order_items' area='frontend'
|
41 |
+
template='ebizmarts_abandonedcart/email/order/items.phtml' quote=$quote url}}
|
42 |
+
</td>
|
43 |
+
</tr>
|
44 |
+
<tr>
|
45 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
46 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
47 |
+
store.getFrontendName()}}</strong></p></center>
|
48 |
+
</td>
|
49 |
+
</tr>
|
50 |
+
<tr>
|
51 |
+
<td align="center">
|
52 |
+
<div style="margin-top: 30px; margin-bottom:20px;"><a bgcolor="#EAEAEA"
|
53 |
+
style="background:#EAEAEA; text-align:center; color:black; border-radius: 10px; text-decoration:none; padding:22px; box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff; font-size:15px"
|
54 |
+
href="{{var url}}">Hervat je bestelling
|
55 |
+
{{depend couponcode}} en ontvang de coupon code {{/depend}}{{var couponcode}} {{depend
|
56 |
+
discount}} om {{var discount}}% korting te krijgen!{{/depend}}</a></div>
|
57 |
+
</td>
|
58 |
+
</tr>
|
59 |
+
<tr>
|
60 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var unsubscribeurl}}"
|
61 |
+
style="color:#1E7EC8;">deze link</a>.
|
62 |
+
</td>
|
63 |
+
</tr>
|
64 |
+
</table>
|
65 |
+
</td>
|
66 |
+
</tr>
|
67 |
+
</table>
|
68 |
+
</div>
|
69 |
+
</body>
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
|
20 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
21 |
+
Je hebt een winkelwagen achtergelaten op {{var store.getFrontendName()}}.
|
22 |
+
Ons aanbod is niet ongelimiteerd, daarom is het slim om deze kans aan te pakken om je gewenste producten bij je thuis te laten bezorgen.
|
23 |
+
<br>Je hebt toegang tot je winkelwagen via <a href="{{var url}}" style="color:#1E7EC8;">hier</a>.
|
24 |
+
{{depend couponcode}}
|
25 |
+
<br>Je kunt deze coupon code gebruiken: <b>{{var couponcode}}</b>
|
26 |
+
{{/depend}}
|
27 |
+
{{depend discount}}
|
28 |
+
en een korting krijgen van {{var discount}} tot {{var todate}}
|
29 |
+
{{/depend}}
|
30 |
+
{{depend points}}
|
31 |
+
<br/>Je hebt momenteel {{var points}} punten beschikbaar.
|
32 |
+
{{/depend}}
|
33 |
+
<br>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via <a
|
34 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
35 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
36 |
+
</p>
|
37 |
+
</td>
|
38 |
+
</tr>
|
39 |
+
<tr>
|
40 |
+
<td>
|
41 |
+
{{block type='ebizmarts_abandonedcart/email_order_items' area='frontend'
|
42 |
+
template='ebizmarts_abandonedcart/email/order/items.phtml' quote=$quote url}}
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
<tr>
|
46 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
47 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
48 |
+
store.getFrontendName()}}</strong></p></center>
|
49 |
+
</td>
|
50 |
+
</tr>
|
51 |
+
<tr>
|
52 |
+
<td align="center">
|
53 |
+
<div style="margin-top: 30px; margin-bottom:20px;"><a bgcolor="#EAEAEA"
|
54 |
+
style="background:#EAEAEA; text-align:center; color:black; border-radius: 10px; text-decoration:none; padding:22px; box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff; font-size:15px"
|
55 |
+
href="{{var url}}">Hervat je bestelling
|
56 |
+
{{depend couponcode}} en ontvang de coupon code {{/depend}}{{var couponcode}} {{depend
|
57 |
+
discount}} om {{var discount}}% korting te krijgen!{{/depend}}</a></div>
|
58 |
+
</td>
|
59 |
+
</tr>
|
60 |
+
<tr>
|
61 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var unsubscribeurl}}"
|
62 |
+
style="color:#1E7EC8;">deze link</a>.
|
63 |
+
</td>
|
64 |
+
</tr>
|
65 |
+
</table>
|
66 |
+
</td>
|
67 |
+
</tr>
|
68 |
+
</table>
|
69 |
+
</div>
|
70 |
+
</body>
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
4 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
5 |
+
<tr>
|
6 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
7 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
8 |
+
style="border:1px solid #E0E0E0;">
|
9 |
+
<!-- [ header starts here] -->
|
10 |
+
<tr>
|
11 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
12 |
+
style="margin-bottom:10px;" border="0"/></a>
|
13 |
+
</td>
|
14 |
+
</tr>
|
15 |
+
<!-- [ middle starts here] -->
|
16 |
+
<tr>
|
17 |
+
<td valign="top">
|
18 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
19 |
+
{{htmlescape var=$name}}</h1>
|
20 |
+
|
21 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
22 |
+
Je hebt een winkelwagen achtergelaten op {{var store.getFrontendName()}}.
|
23 |
+
{{depend couponcode}}
|
24 |
+
<br>Je bent gekozen om een coupon te ontvangen die gebruikt kan worden met deze code: <b>{{var
|
25 |
+
couponcode}}</b>
|
26 |
+
{{/depend}}
|
27 |
+
{{depend discount}}
|
28 |
+
hiermee kun je een korting krijgen van {{var discount}} tot {{var todate}}
|
29 |
+
{{/depend}}
|
30 |
+
{{depend points}}
|
31 |
+
<br/>Je hebt momenteel {{var points}} punten beschikbaar.
|
32 |
+
{{/depend}}
|
33 |
+
<br>Bekijk je winkelwagen via <a href="{{var url}}" style="color:#1E7EC8;">deze link</a>.
|
34 |
+
<br>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via <a
|
35 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
36 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
37 |
+
</p>
|
38 |
+
</td>
|
39 |
+
</tr>
|
40 |
+
<tr>
|
41 |
+
<td>
|
42 |
+
{{block type='ebizmarts_abandonedcart/email_order_items' area='frontend'
|
43 |
+
template='ebizmarts_abandonedcart/email/order/items.phtml' quote=$quote url}}
|
44 |
+
</td>
|
45 |
+
</tr>
|
46 |
+
<tr>
|
47 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
48 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
49 |
+
store.getFrontendName()}}</strong></p></center>
|
50 |
+
</td>
|
51 |
+
</tr>
|
52 |
+
<tr>
|
53 |
+
<td align="center">
|
54 |
+
<div style="margin-top: 30px; margin-bottom:20px;"><a bgcolor="#EAEAEA"
|
55 |
+
style="background:#EAEAEA; text-align:center; color:black; border-radius: 10px; text-decoration:none; padding:22px; box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff; font-size:15px"
|
56 |
+
href="{{var url}}">Hervat je bestelling
|
57 |
+
{{depend couponcode}} en ontvang de coupon code {{/depend}}{{var couponcode}} {{depend
|
58 |
+
discount}} om {{var discount}}% korting te krijgen!{{/depend}}</a></div>
|
59 |
+
</td>
|
60 |
+
</tr>
|
61 |
+
<tr>
|
62 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var unsubscribeurl}}"
|
63 |
+
style="color:#1E7EC8;">deze link</a>.
|
64 |
+
</td>
|
65 |
+
</tr>
|
66 |
+
</table>
|
67 |
+
</td>
|
68 |
+
</tr>
|
69 |
+
</table>
|
70 |
+
</div>
|
71 |
+
</body>
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Template titel</h1>
|
18 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
19 |
+
Het is aangeraden om maximaal 3 emails te versturen naar een achtergelaten winkelwagen.
|
20 |
+
{{depend couponcode}}
|
21 |
+
Deze inforamtie wordt getoond wanneer er een actieve coupon is.
|
22 |
+
{{/depend}}
|
23 |
+
{{depend discount}}
|
24 |
+
Deze informatie zal worden getoond wanneer 'discount:' ingesteld is als een label voor de coupon
|
25 |
+
{{/depend}}
|
26 |
+
</p>
|
27 |
+
</td>
|
28 |
+
</tr>
|
29 |
+
<tr>
|
30 |
+
<td>
|
31 |
+
{{block type='ebizmarts_abandonedcart/email_order_items' area='frontend'
|
32 |
+
template='ebizmarts_abandonedcart/email/order/items.phtml' quote=$quote}}
|
33 |
+
</td>
|
34 |
+
</tr>
|
35 |
+
<tr>
|
36 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
37 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
38 |
+
store.getFrontendName()}}</strong></p></center>
|
39 |
+
</td>
|
40 |
+
</tr>
|
41 |
+
<tr>
|
42 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var unsubscribeurl}}"
|
43 |
+
style="color:#1E7EC8;">deze link</a>.
|
44 |
+
</td>
|
45 |
+
</tr>
|
46 |
+
</table>
|
47 |
+
</td>
|
48 |
+
</tr>
|
49 |
+
</table>
|
50 |
+
</div>
|
51 |
+
</body>
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">
|
18 |
+
Gefeliciteerd {{var name}}!</h1>
|
19 |
+
|
20 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
21 |
+
{{depend couponcode}}
|
22 |
+
We zijn blij om te melden dat je een coupon code gewonnen hebt!
|
23 |
+
Activeer de coupon met behulp van deze code: <b>{{var couponcode}}</b>
|
24 |
+
{{/depend}}
|
25 |
+
{{depend discount}}
|
26 |
+
je zult een korting ontvangen van {{var discount}} tot {{var todate}}
|
27 |
+
{{/depend}}
|
28 |
+
Bezoek {{store url=""}} om deze coupon code in te leveren!
|
29 |
+
</p>
|
30 |
+
</td>
|
31 |
+
</tr>
|
32 |
+
<tr>
|
33 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
34 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
35 |
+
store.getFrontendName()}}</strong></p></center>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
</table>
|
39 |
+
</td>
|
40 |
+
</tr>
|
41 |
+
</table>
|
42 |
+
</div>
|
43 |
+
</body>
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
|
21 |
+
<p>Je hebt je ingeschreven om meldingen te ontvangen wanneer een product beschikbaar wordt in onze webwinkel..</p>
|
22 |
+
|
23 |
+
<p>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via <a
|
24 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
25 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
26 |
+
</p>
|
27 |
+
</td>
|
28 |
+
</tr>
|
29 |
+
<tr>
|
30 |
+
<td>
|
31 |
+
{{block type='ebizmarts_autoresponder/email_backtostock_item' area='frontend'
|
32 |
+
template='ebizmarts/autoresponder/backtostock/item.phtml' product=$product}}
|
33 |
+
</td>
|
34 |
+
</tr>
|
35 |
+
<tr>
|
36 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
37 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
38 |
+
store.getFrontendName()}}</strong></p></center>
|
39 |
+
</td>
|
40 |
+
</tr>
|
41 |
+
</table>
|
42 |
+
</td>
|
43 |
+
</tr>
|
44 |
+
</table>
|
45 |
+
</div>
|
46 |
+
</body>
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
|
21 |
+
Namens {{var store.getFrontendName()}} wensen wij je een fijne verjaardag.
|
22 |
+
{{depend couponcode}}
|
23 |
+
<br>Om deze reden geven we je een coupon met code <b>{{var couponcode}}</b>
|
24 |
+
{{/depend}}
|
25 |
+
{{depend discount}}
|
26 |
+
hiermee kun je een korting van {{var discount}} ontvangen tot {{var todate}}
|
27 |
+
{{/depend}}
|
28 |
+
</p>
|
29 |
+
</tr>
|
30 |
+
<tr>
|
31 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
32 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
33 |
+
store.getFrontendName()}}</strong></p></center>
|
34 |
+
</td>
|
35 |
+
</tr>
|
36 |
+
<tr>
|
37 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
38 |
+
style="color:#1E7EC8;">deze link</a>.
|
39 |
+
</td>
|
40 |
+
</tr>
|
41 |
+
</table>
|
42 |
+
</td>
|
43 |
+
</tr>
|
44 |
+
</table>
|
45 |
+
</div>
|
46 |
+
</body>
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
|
21 |
+
Namens {{var store.getFrontendName()}} willen wij je bedanken voor je bestelling!
|
22 |
+
|
23 |
+
<br>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via <a
|
24 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
25 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
26 |
+
|
27 |
+
Nogmaals bedankt,
|
28 |
+
</p>
|
29 |
+
</tr>
|
30 |
+
<tr>
|
31 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
32 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
33 |
+
store.getFrontendName()}}</strong></p></center>
|
34 |
+
</td>
|
35 |
+
</tr>
|
36 |
+
<tr>
|
37 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
38 |
+
style="color:#1E7EC8;">deze link</a>.
|
39 |
+
</td>
|
40 |
+
</tr>
|
41 |
+
</table>
|
42 |
+
</td>
|
43 |
+
</tr>
|
44 |
+
</table>
|
45 |
+
</div>
|
46 |
+
</body>
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
We hebben gemerkt dat je niet meer bent ingelogd sinds {{var lastlogin}}
|
21 |
+
Graag bieden we een aantal mogelijkheden aan!
|
22 |
+
|
23 |
+
<br>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via <a
|
24 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}"
|
25 |
+
style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span> Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
26 |
+
</p>
|
27 |
+
</tr>
|
28 |
+
<tr>
|
29 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
30 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
31 |
+
store.getFrontendName()}}</strong></p></center>
|
32 |
+
</td>
|
33 |
+
</tr>
|
34 |
+
<tr>
|
35 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
36 |
+
style="color:#1E7EC8;">deze link</a>.
|
37 |
+
</td>
|
38 |
+
</tr>
|
39 |
+
</table>
|
40 |
+
</td>
|
41 |
+
</tr>
|
42 |
+
</table>
|
43 |
+
</div>
|
44 |
+
</body>
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
|
20 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
21 |
+
Je bent wellicht geinteresseerd in de onderstaande producten:
|
22 |
+
</p>
|
23 |
+
</td>
|
24 |
+
</tr>
|
25 |
+
<tr>
|
26 |
+
<td>
|
27 |
+
{{block type='ebizmarts_autoresponder/email_related_items' area='frontend'
|
28 |
+
template='ebizmarts/autoresponder/related/items.phtml' products=$related}}
|
29 |
+
</td>
|
30 |
+
</tr>
|
31 |
+
<tr>
|
32 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
33 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
34 |
+
store.getFrontendName()}}</strong></p></center>
|
35 |
+
</td>
|
36 |
+
</tr>
|
37 |
+
<tr>
|
38 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
39 |
+
style="color:#1E7EC8;">deze link</a>.
|
40 |
+
</td>
|
41 |
+
</tr>
|
42 |
+
</table>
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
</table>
|
46 |
+
</div>
|
47 |
+
</body>
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
|
20 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
21 |
+
We stellen het erg op prijs dat je de tijd hebt genomen om de door jou gekochte producten te waarderen, met order nummer: {{var
|
22 |
+
ordernum}}. Hopelijk zien we je terug op onze webwinkel!
|
23 |
+
</p>
|
24 |
+
</td>
|
25 |
+
</tr>
|
26 |
+
<tr>
|
27 |
+
<td>
|
28 |
+
{{block type='ebizmarts_autoresponder/email_review_items' area='frontend'
|
29 |
+
template='ebizmarts/autoresponder/review/items.phtml' products=$products token=$token}}
|
30 |
+
</td>
|
31 |
+
</tr>
|
32 |
+
<tr>
|
33 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
34 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
35 |
+
store.getFrontendName()}}</strong></p></center>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
<tr>
|
39 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
40 |
+
style="color:#1E7EC8;">deze link</a>.
|
41 |
+
</td>
|
42 |
+
</tr>
|
43 |
+
|
44 |
+
</table>
|
45 |
+
</td>
|
46 |
+
</tr>
|
47 |
+
</table>
|
48 |
+
</div>
|
49 |
+
</body>
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
|
21 |
+
Namens {{var store.getFrontendName()}} willen we je bedanken voor je waardering op onze webshop.
|
22 |
+
{{depend couponcode}}
|
23 |
+
<br>We hebben voor jou een speciale coupon aangemaakt met code: <b>{{var couponcode}}</b>
|
24 |
+
{{/depend}}
|
25 |
+
{{depend discount}}
|
26 |
+
hiermee kun je een korting van {{var discount}} ontvangen tot {{var todate}}
|
27 |
+
{{/depend}}
|
28 |
+
</p>
|
29 |
+
</tr>
|
30 |
+
<tr>
|
31 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
32 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
33 |
+
store.getFrontendName()}}</strong></p></center>
|
34 |
+
</td>
|
35 |
+
</tr>
|
36 |
+
</table>
|
37 |
+
</td>
|
38 |
+
</tr>
|
39 |
+
</table>
|
40 |
+
</div>
|
41 |
+
</body>
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
Bekeken producten.
|
21 |
+
<tr>
|
22 |
+
<td>
|
23 |
+
{{block type='ebizmarts_autoresponder/email_wishlist_items' area='frontend'
|
24 |
+
template='ebizmarts/autoresponder/wishlist/items.phtml' products=$products}}
|
25 |
+
</td>
|
26 |
+
</tr>
|
27 |
+
|
28 |
+
<br>If you have any questions please contact us at <a
|
29 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config
|
30 |
+
path='trans_email/ident_support/email'}}</a> or call us at <span class="nobr">{{config path='general/store_information/phone'}}</span>
|
31 |
+
Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
32 |
+
</p>
|
33 |
+
</tr>
|
34 |
+
<tr>
|
35 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
36 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
37 |
+
store.getFrontendName()}}</strong></p></center>
|
38 |
+
</td>
|
39 |
+
</tr>
|
40 |
+
<tr>
|
41 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
42 |
+
style="color:#1E7EC8;">deze link</a>.
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
</table>
|
46 |
+
</td>
|
47 |
+
</tr>
|
48 |
+
</table>
|
49 |
+
</div>
|
50 |
+
</body>
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
2 |
+
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
|
3 |
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
4 |
+
<tr>
|
5 |
+
<td align="center" valign="top" style="padding:20px 0 20px 0">
|
6 |
+
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650"
|
7 |
+
style="border:1px solid #E0E0E0;">
|
8 |
+
<!-- [ header starts here] -->
|
9 |
+
<tr>
|
10 |
+
<td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}"
|
11 |
+
style="margin-bottom:10px;" border="0"/></a>
|
12 |
+
</td>
|
13 |
+
</tr>
|
14 |
+
<!-- [ middle starts here] -->
|
15 |
+
<tr>
|
16 |
+
<td valign="top">
|
17 |
+
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo,
|
18 |
+
{{htmlescape var=$name}}</h1>
|
19 |
+
<p style="font-size:12px; line-height:16px; margin:0;">
|
20 |
+
Thanks for adding new products to your wishlist.
|
21 |
+
<tr>
|
22 |
+
<td>
|
23 |
+
{{block type='ebizmarts_autoresponder/email_wishlist_items' area='frontend'
|
24 |
+
template='ebizmarts/autoresponder/wishlist/items.phtml' products=$products}}
|
25 |
+
</td>
|
26 |
+
</tr>
|
27 |
+
|
28 |
+
<br>Mocht je nog vragen hebben over je bestelling, dan kun je contact met ons opnemen via<a
|
29 |
+
href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config
|
30 |
+
path='trans_email/ident_support/email'}}</a> of bel ons op <span class="nobr">{{config path='general/store_information/phone'}}</span>
|
31 |
+
Maandag - Vrijdag van 9 uur 's ochtends tot 5 uur 's avonds.
|
32 |
+
</p>
|
33 |
+
</tr>
|
34 |
+
<tr>
|
35 |
+
<td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;">
|
36 |
+
<center><p style="font-size:12px; margin:0;">Met vriendelijke groeten, <strong>{{var
|
37 |
+
store.getFrontendName()}}</strong></p></center>
|
38 |
+
</td>
|
39 |
+
</tr>
|
40 |
+
<tr>
|
41 |
+
<td>Je kunt je uitschrijven van deze emails via <a href="{{var url}}"
|
42 |
+
style="color:#1E7EC8;">deze link</a>.
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
</table>
|
46 |
+
</td>
|
47 |
+
</tr>
|
48 |
+
</table>
|
49 |
+
</div>
|
50 |
+
</body>
|
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
function getCampaign() {
|
3 |
var params = location.search.substr(1).split('&');
|
4 |
var cookies = [];
|
@@ -29,5 +29,4 @@
|
|
29 |
getCampaign;
|
30 |
} else {
|
31 |
document.observe('dom:loaded', getCampaign);
|
32 |
-
}
|
33 |
-
});
|
1 |
+
|
2 |
function getCampaign() {
|
3 |
var params = location.search.substr(1).split('&');
|
4 |
var cookies = [];
|
29 |
getCampaign;
|
30 |
} else {
|
31 |
document.observe('dom:loaded', getCampaign);
|
32 |
+
}
|
|
@@ -1,42 +1,33 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Ebizmarts_MageMonkey</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>MailChimp integration for Magento by Ebizmarts</summary>
|
10 |
<description>Full MailChimp integration, automatic webhooks, multiple lists, interest groups</description>
|
11 |
-
<notes>1.1.
|
12 |
--------
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
Fixed
|
22 |
-

|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
Footer subscription when not logged in working correctly.
|
28 |
-

|
29 |
-
Solved issue with Admin controllers isAllowed (Latest security patches).
|
30 |
-

|
31 |
-
Fixed issue with reset ecommerce orders.
|
32 |
-

|
33 |
-
Misspelling when error occurs in reset ecommerce orders changed.
|
34 |
-

|
35 |
-
Changed cron jobs timing to clean expired coupons.</notes>
|
36 |
<authors><author><name>Ebizmarts Development Team</name><user>auto-converted</user><email>info@ebizmarts.com</email></author></authors>
|
37 |
-
<date>2015-
|
38 |
-
<time>
|
39 |
-
<contents><target name="magecommunity"><dir name="Ebizmarts"><dir name="MageMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="Bulksync"><dir name="Export"><file name="Form.php" hash="ae560b94bb9e440d660be69f5165b69f"/></dir><dir name="Import"><file name="Form.php" hash="0421281b9cfbc446329d7482c24c2c11"/></dir><dir name="Queue"><file name="Grid.php" hash="23b3edec3bc13fae8aee5b7292c4d4d1"/></dir><dir name="QueueExport"><file name="Grid.php" hash="68ec401dc23cddf8a1362c53aaab69b2"/></dir><dir name="QueueImport"><file name="Grid.php" hash="a695371e46328137d025b0fdf09944fe"/></dir><file name="Export.php" hash="62714f95580e489105914270b889a142"/><file name="Import.php" hash="d573582da25766aecba918d299c02586"/><file name="Queue.php" hash="c3cea1da02e0a09d7876958058ee091e"/><file name="QueueExport.php" hash="69536eee264346535f1c786d61b3cf84"/><file name="QueueImport.php" hash="d9fbc0d22f94df54f71116d0d484d1a3"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Memberactivity.php" hash="55fbb4519c6d862948dc4d8bf4416cfb"/></dir></dir></dir><dir name="Ecommerce"><file name="Grid.php" hash="b1ad37ffe9fe0752356d29a6548b0434"/></dir><dir name="Ecommerceapi"><dir name="Renderer"><file name="Items.php" hash="d72cfedf0cafc938becf9bd52801ba3a"/></dir><file name="Grid.php" hash="ee1be42cb6c893e3c59cac784df67fb3"/></dir><dir name="Memberactivity"><file name="Grid.php" hash="f4b341dd60b361098394618cf3382620"/></dir><dir name="Newsletter"><dir name="Subscriber"><dir name="Renderer"><file name="Firstname.php" hash="1987d5f7f8df91a98deee748f01e211b"/><file name="Lastname.php" hash="025002a4b768d102fb6dbcb6a212fcd6"/></dir></dir></dir><dir name="Renderer"><file name="Date.php" hash="6e4e52403ec55df3aa2183fd4b51b095"/><file name="Importypes.php" hash="87c7a222e403781fcd8ee08cf0b489ba"/><file name="Lists.php" hash="15f5b5e087b49396a6f844e0f1bfb6b1"/><file name="Progress.php" hash="31eaaa5a7e99b21a4ed705971fe1001d"/><file name="Yesno.php" hash="c3173a8e8ea2d5f03531e7d996bbd259"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="31bf492c4e6137312c55bc437bf226cf"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="8f2a10ca1a1d239b3b231ca2cee5f96e"/></dir></dir><file name="Account.php" hash="fccf1faac2682d754655631e6451c026"/><file name="Date.php" hash="455120f4f2e8d7801f3c220e231b6789"/><file name="OauthWizard.php" hash="bd79f8b43d71137337e732fbeb415ffb"/><file name="ResetLocalEcommerce.php" hash="493126ac056c3585ed2d3020d62c76e1"/><file name="ResetRemoteEcommerce.php" hash="40d54bb2d6e7dd7bf3a91c9346f988bf"/></dir></dir><file name="Ecommerce.php" hash="48c237e8cc1223ad26a88d2409679fec"/><file name="Ecommerceapi.php" hash="a9f659502d96bcd1a69a88d15fcab4f9"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="14de0075005dafe3363716e3ffd10d20"/></dir><dir name="Customer"><dir name="Account"><file name="Lists.php" hash="64f0e5a8360750f6b19d8b5db0fcac23"/></dir></dir><file name="Lists.php" hash="e268f28007ba8c9caa2b6179580affaa"/><file name="Signup.php" hash="93b0e787e63a90a5fb4bacba1e03bd05"/></dir><dir name="Helper"><file name="Cache.php" hash="4e6cd9724c2788056aacacd37f5699cc"/><file name="Data.php" hash="2533beb9fc53fdb980910f84ac1fd5ed"/><file name="Export.php" hash="91f24805e9cbbe124f0c99cb8f1f1272"/><file name="Oauth2.php" hash="684a7b71d97b438081ebf332057ec8ea"/></dir><dir name="Model"><dir name="Custom"><file name="Collection.php" hash="304d372c1b8bd8d8d09dd743e03cdf66"/></dir><dir name="Email"><file name="Template.php" hash="81c9f040cf931dfb9e2a2484d9cc0b09"/></dir><dir name="Feed"><file name="Updates.php" hash="d6401edef548f125f238ae7d80a458fe"/></dir><dir name="Mysql4"><dir name="Apidebug"><file name="Collection.php" hash="7cc3fe74a46da1a4770b49eb7ac47f97"/></dir><dir name="Asyncorders"><file name="Collection.php" hash="e7b17fac028f7116c762e120b0f3f0a8"/></dir><dir name="Asyncsubscribers"><file name="Collection.php" hash="3458134c9a1ced7359db40f7b79a133f"/></dir><dir name="Bulksync"><dir name="Export"><file name="Collection.php" hash="ac64bc652233136189c504f678062374"/></dir><dir name="Import"><file name="Collection.php" hash="6cb3e09a817488f9bfa50f877a5c2b0b"/></dir><file name="Export.php" hash="eedc5a3549b3815f0d290eca3e0579df"/><file name="Import.php" hash="487fc6c0335ebf352081185d9afe3f88"/></dir><dir name="Ecommerce"><file name="Collection.php" hash="80319b6c991c510f1569800c80d384f1"/></dir><dir name="Lastorder"><file name="Collection.php" hash="38d6a7519cfe21caf7f5d22877aa1477"/></dir><file name="Apidebug.php" hash="2699eec825e8fb88b1d572728c10b7bc"/><file name="Asyncorders.php" hash="3eb64d883705854ce7899fd891101c63"/><file name="Asyncsubscribers.php" hash="a067c1e951ce61558e00f3aa8e5d15ef"/><file name="Ecommerce.php" hash="b3290a6170c8c8f275dcd4300840ea26"/><file name="Lastorder.php" hash="f3987329cb78c978bcc94ba375d9f998"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Account.php" hash="5bbf12b572234101af3e753ba74bcd41"/><file name="Attributes.php" hash="4ac1c98f3b3b84b2c93ddfcc3df5d817"/><file name="BulksyncDatasource.php" hash="36331ac3ecd034f914666a49e4d75cbc"/><file name="BulksyncStatus.php" hash="658f1f9d1ee7177d5dc094862bce155a"/><file name="Checkoutsubscribe.php" hash="28c8641a8fa4c336487af2227e152136"/><file name="CronProcessLimit.php" hash="3ca3a61f07b7aa84479eddda35efdde4"/><file name="CustomerGroup.php" hash="299b8514de098e02efe5393ebe7bdf65"/><file name="Ecommerce360.php" hash="24906da389cbf6b4a97c3edab5c7f020"/><file name="List.php" hash="bd9ef222e15d69b5c5038a98723d18c6"/><file name="OrderProcessLimit.php" hash="bc3add48e125caa904774cb6b669ba0c"/><file name="OrderStatus.php" hash="d3eeeee5d614e8fa83e258ce53cbed79"/><file name="Status.php" hash="e1e5cf6252241f39d0ceaff6f94d3afb"/><file name="TransactionalEmails.php" hash="b2f0d564a59372cba59d3aac7e4fe9e0"/><file name="WebhookDelete.php" hash="c90bbf8b0cf2a546c0f72193f8c605cf"/></dir></dir></dir><file name="Api.php" hash="ea7c720767bc58cb740d2f70100f699b"/><file name="Asyncorders.php" hash="3f60d1a1c1885268ae7e2ddfb1772feb"/><file name="Asyncsubscribers.php" hash="b79a42df357267205d7e74bb7c220755"/><file name="BulksyncExport.php" hash="71af9a6134b415a324dc9c937a5b2f8e"/><file name="BulksyncImport.php" hash="fb3716e235bc22cf91c4c17edf10ec23"/><file name="Cache.php" hash="89ac2fac903a566e6f6a3c0951bf274d"/><file name="Config.php" hash="276026d2d6ac8af349b7f2f82dc17668"/><file name="Cron.php" hash="3d0160a020ac8fd3b95251d40452d0b1"/><file name="Ecommerce.php" hash="f4581befe128963df3e3d062b1bc4d55"/><file name="Ecommerce360.php" hash="b2571e3e8e619360ed6f3fc9b8a67435"/><file name="Lastorder.php" hash="f2977e76892b0b1a5e031f8eabf93f18"/><file name="MCAPI.php" hash="c86a58e5a40b709aefecd05c813ee7be"/><file name="MCEXPORTAPI.php" hash="810b1c7b0f6daf93e11c7fbbc90980a3"/><file name="Monkey.php" hash="a8141ae234a5944d47510670f69c3d58"/><file name="Observer.php" hash="012eb8dffdb7b3d05a7e9fdc3788f857"/><file name="Subscriber.php" hash="70423d00c03e9fb7436921f93052c75d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BulksyncController.php" hash="eca2f78696482b5422294a8b7ce1e1d5"/><file name="ConfigController.php" hash="6a307ba4b4a39991392935dd368ba1f8"/><file name="EcommerceController.php" hash="ac9472296106c918b8fa1880b8fffa0c"/></dir><dir name="Customer"><file name="AccountController.php" hash="14479dffeacd3c2421ce5822f7d7f190"/></dir><file name="SignupController.php" hash="e379f52f8ee0191a4c7289cd2afcd19d"/><file name="WebhookController.php" hash="319878266b5463d5d8591b6a4fb5e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2ca3d47af5d16f1d5e0efb71346d3fe4"/><file name="config.xml" hash="7ad9bce45404a42656c553078107c52e"/><file name="system.xml" hash="9dd307a54fc966aade4676055e36f5b6"/></dir><dir name="sql"><dir name="monkey_setup"><file name="mysql4-install-0.0.1.php" hash="4df34769f4d5a8ceca90fd582500e3a9"/><file name="mysql4-upgrade-0.0.1-0.0.2.php" hash="d81147dab407bc55c59cddb5a764c53e"/><file name="mysql4-upgrade-0.0.2-0.0.3.php" hash="ce1925ff2ab03aa9fd6cbe43283ea37d"/><file name="mysql4-upgrade-0.0.3-0.0.4.php" hash="7f1e38bcf030e6346a9fd8321f1a4362"/><file name="mysql4-upgrade-0.0.4-0.0.5.php" hash="bbe6b895320effca77cc2c23431f043f"/><file name="mysql4-upgrade-0.0.5-0.0.6.php" hash="98b72d9ef4ec8078c09a1f641fc35a39"/><file name="mysql4-upgrade-0.0.6-0.0.7.php" hash="ea15755fc072e7c82b78063589360779"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="b2ec497921eb2bd9a97a318554fd980b"/><file name="mysql4-upgrade-1.1.21-1.1.22.php" hash="738e3d3e33c1a3a02bb101b89743cc5c"/><file name="mysql4-upgrade-1.1.23-1.1.24.php" hash="5a1bfdc8014edbc8b8c728954405a9f5"/><file name="mysql4-upgrade-1.1.33-1.1.34.php" hash="68f74c77460e76ea6153ebc823d49990"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="14750274ece5816d6c1ab490f7d610ab"/></dir></dir></dir><dir name="Mandrill"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6ca5fb9bf9254323e1f2b4447203b562"/></dir><file name="Userinfo.php" hash="7cd34efc0231424c9e2f5e662154c41c"/></dir></dir><dir name="Templates"><dir name="Templates"><file name="Grid.php" hash="1ecdb6b04fbd16043de908f261353b8d"/></dir><file name="Templates.php" hash="1682fe6d39605a9839bf3cdb3c1185b7"/></dir><dir name="Users"><dir name="Senders"><file name="Grid.php" hash="292097a493de241540d3e3aea463241f"/></dir><file name="Senders.php" hash="4a4449652c495a9d4c12966ab007e7a4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="86fcaa6a66a5a628ded7215172448daf"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="b19533f9d67828bb56e1cec4d36c2c85"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Userinfo.php" hash="12a9c9c27c985efd021a4e6c7fdfcf5e"/></dir></dir><file name="Config.php" hash="2219d951bf6b2553ec0284b65d8d92a2"/></dir><file name="Customcollection.php" hash="9b5766c0393a54b4356254725b4d78b2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Mandrill"><file name="UsersController.php" hash="82f6e810f51b12b65d009bdeaded95e8"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ea87cce062596388f7e9507943e8bb5"/><file name="config.xml" hash="2af986674d40e375b7d1b59c1a9e119a"/><file name="system.xml" hash="d05b90ca129297b6ffda52a4ba1fd26a"/></dir></dir><dir name="AbandonedCart"><dir name="Block"><dir name="Adminhtml"><dir name="Abandonedmails"><file name="Grid.php" hash="f2813a7ec47e20b78874a0dbb1461b3e"/></dir><dir name="Abandonedorder"><file name="Grid.php" hash="5ab9e3884d3306d78e78133f09e22614"/></dir><dir name="Dashboard"><file name="Sales.php" hash="b0d6fce3a5f4ef5a891c8578eb36ef97"/><file name="Totals.php" hash="4cd3c1e0d8d357c79ec6e7a2ed98c6a0"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6358bc58857011c08dedcbab885b461f"/></dir><file name="Date.php" hash="323a49af281f06dfa72c1d3512257e04"/></dir></dir><file name="Abandonedmails.php" hash="c2714b5a6cb534c91564ebc340fe3f26"/><file name="Abandonedorder.php" hash="1a14da87647612a8773f34f70bc05dea"/><file name="Dashboard.php" hash="c27d5ec29455176fff7e2fac86fcce21"/></dir><dir name="Email"><dir name="Order"><file name="Items.php" hash="5c4be14f72d2cfe0a25058246d016d25"/></dir></dir><dir name="Popup"><file name="Emailcatcher.php" hash="0934c203ae1f31f1ce897521395c6bd9"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c4e53e588ab7e44f669b766d36bd4c47"/></dir><dir name="Model"><dir name="Resource"><dir name="Abtesting"><file name="Collection.php" hash="f96fe4be550bef6daabc5d211c86aca0"/></dir><dir name="Mailssent"><file name="Collection.php" hash="dc1e2c44eb53381d57d10a6bc08ad497"/></dir><dir name="Order"><file name="Collection.php" hash="a079410c43e1afbb428b7163d1537482"/></dir><dir name="Popup"><file name="Collection.php" hash="af37502f9802c7574318ab28a8fb1b16"/></dir><file name="Abtesting.php" hash="46e70f8507676e157ddec44f66094e59"/><file name="Mailssent.php" hash="80f0b4e3f29d10951362f07eb45a3ece"/><file name="Popup.php" hash="446921e9b1da1973c83665e8f749bbbb"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="a4f5e052810187fb824933e76ea8a1cf"/><file name="Cmspage.php" hash="89bfcbe90a7b2f396a56b3f1fe72dbd2"/><file name="Customergroup.php" hash="74af027c3fb6745d0e45938f83394489"/><file name="Discounttype.php" hash="55c251fafbd10821d6c18c381c307888"/><file name="Maxemails.php" hash="63b860ace056552d159ada056eebfbd7"/><file name="Unit.php" hash="07fa0c25182538e08479cc4f91c7ca16"/><file name="Yesnovariation.php" hash="d2928bbbbe7cf359b00e67ef98308148"/></dir></dir><file name="Abtesting.php" hash="fdf9df78b6656c898fd74fbcb3ec51e1"/><file name="Config.php" hash="3571e63f143d9b49a272da02b0a48f84"/><file name="Cron.php" hash="6351bf5642c9f153ba0a9bb6abbd2142"/><file name="EventObserver.php" hash="717246fa2ef5b4e13a4eb36e23ac78e5"/><file name="Mailssent.php" hash="e238f4116cb473cdcfb3a909d08adaa4"/><file name="Popup.php" hash="d2a4922acc0c5c3994cbc0b2114658b8"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AbandonedmailsController.php" hash="060e46a386be3365ae23722c951de848"/><file name="AbandonedorderController.php" hash="3b74880847f1e33d06043eb673b6c39a"/></dir><file name="AbandonedController.php" hash="70aa47c1c680760e849e8fc032bfab08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62708e88154b231e694210cca0aa6c97"/><file name="config.xml" hash="5ed974a839104f2aad81524996afa38c"/><file name="system.xml" hash="7f801e216f7a8752924bc43d3b1a427b"/></dir><dir name="sql"><dir name="ebizmarts_abandonedcart_setup"><file name="mysql4-install-0.1.0.php" hash="0e1a8c0391654c480773b78a50db5a83"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="4835436b744f8cbff61a66c2e345976f"/><file name="mysql4-upgrade-0.1.18-0.1.19.php" hash="e51b332cb70c81ee472b586fda4e8a7e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="2e87d09a5008ac2f2432a25e08474c87"/><file name="mysql4-upgrade-0.1.20-0.1.21.php" hash="c461ba10961b4ee4e9385173d4264617"/><file name="mysql4-upgrade-0.1.29-0.1.30.php" hash="e9fdf4551cf19b488ed68ca0dd55ab67"/><file name="mysql4-upgrade-0.1.30-0.1.31.php" hash="2889ca071f7b974f2cd85a6b9405e541"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="60daa0d70a1af929a39d6e20ee52ee9c"/></dir></dir></dir><dir name="Autoresponder"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backtostock"><dir name="Fieldset"><file name="Hint.php" hash="196c96e0bdfb853c42510d8cef4bf69a"/></dir></dir><dir name="Birthday"><dir name="Fieldset"><file name="Hint.php" hash="bff790a4ecf1f7ed7ac5d966cb8d516f"/></dir></dir><dir name="Fieldset"><file name="Hint.php" hash="eea231bb3f99b0f3708c2d43144e0f44"/></dir><dir name="Review"><dir name="Fieldset"><file name="Hint.php" hash="d9906e111824893ef363926dd2b485eb"/></dir></dir><dir name="Wishlist"><dir name="Fieldset"><file name="Hint.php" hash="75a66f64700f02eebfa391f953bc42d0"/></dir></dir></dir></dir></dir><dir name="Backtostock"><file name="Notice.php" hash="30efc30519a1ecb31d39a5fe59a6ae90"/></dir><dir name="Customer"><dir name="Account"><file name="List.php" hash="755d6d07d113450617bc31e8bc039df0"/></dir></dir><dir name="Email"><dir name="Backtostock"><file name="Item.php" hash="178b97ceae8c488bf49cb44b6f5f5d11"/></dir><dir name="Related"><file name="Items.php" hash="831fda241af415c53d47274ecc395299"/></dir><dir name="Review"><file name="Items.php" hash="de3dd88f0a2399314c746b08cbe4ab82"/></dir><dir name="Wishlist"><file name="Items.php" hash="5c712e43bca1a83bf7592e082acca863"/></dir></dir><dir name="Review"><file name="Form.php" hash="cb10cbe1702bc6261874ed68eec47a00"/></dir><file name="Unsubscribe.php" hash="bb945f9a63f38ca0b6cdd2a0daed5416"/></dir><dir name="Helper"><file name="Data.php" hash="a2a16f441955f7ae5b9403355eddf986"/></dir><dir name="Model"><dir name="Resource"><dir name="Backtostock"><file name="Collection.php" hash="95a70c48dce1bac7fcb86447bb899057"/></dir><dir name="Backtostockalert"><file name="Collection.php" hash="c0c5d87c559d2e4011697b1a0ccf4846"/></dir><dir name="Review"><file name="Collection.php" hash="098061d250555679c9f609d2087ef9d4"/></dir><dir name="Unsubscribe"><file name="Collection.php" hash="11048027437c0a5bc1478e4f2cdcc51d"/></dir><dir name="Visited"><file name="Collection.php" hash="b09c0ce08ac30cc30f974e5c744eabf1"/></dir><file name="Backtostock.php" hash="85c29c73ba30f2fdf819fc88f5e03098"/><file name="Backtostockalert.php" hash="148ae085ef93a7cf6e52cdd60f1ca9a2"/><file name="Review.php" hash="cf78994db6e262e42a589b6538a45a32"/><file name="Unsubscribe.php" hash="3b9e4d09dbb7ba483a5d16b6312050e6"/><file name="Visited.php" hash="55f2d0c1f90b41e852ecbf964925dc10"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="4de4d5c373fa1ea373751cbd5ed7efbc"/><file name="Couponcounter.php" hash="18049531633e26b8970935e6b9c73823"/><file name="Customergroup.php" hash="aa31f980b1d28248f137fe2a06b3ba2c"/><file name="Discounttype.php" hash="1228055f8abc3bffba6020f4bb4210e0"/><file name="Generaltype.php" hash="463210c06e00794b79df38a61dfa56c2"/><file name="Hours.php" hash="db8c055c1fc0628f5fad84fc15c6d389"/><file name="Newordertrigger.php" hash="757bcc13562d4a5b905d57920906411f"/><file name="Time.php" hash="4b491667d8ea9816b07f584e84556556"/></dir></dir><file name="Backtostock.php" hash="fa62a4685c70474a2ce3da394e68c597"/><file name="Backtostockalert.php" hash="eabe65c559ee1d93bc8b67dc0bb32a40"/><file name="Config.php" hash="75a65035e240a5154b2037feceb4d864"/><file name="Cron.php" hash="668d7c1c7f82079d54f91b2bf150dcc3"/><file name="EventObserver.php" hash="6fbdbe95331c9b4a15853b49d3984d6e"/><file name="Review.php" hash="c14806dfb106363262b9911e8d06f628"/><file name="Unsubscribe.php" hash="cb20baf948256b9b70a13ed52ab91bab"/><file name="Visited.php" hash="2e9f119fc630cefc50f5a2a21546ebfc"/></dir><dir name="controllers"><file name="AutoresponderController.php" hash="60f7a997438b80a76a7c5c08db8d11d5"/><file name="BacktostockController.php" hash="34b99cc172104773070d9d39cb290534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59a240f12b496566f1a2b1de5f053e96"/><file name="config.xml" hash="d8f208ec9574c1466078559665b4c87e"/><file name="system.xml" hash="790c6d43450e7a251c19e09a78cf9d93"/></dir><dir name="sql"><dir name="ebizmarts_autoresponder_setup"><file name="mysql4-install-0.1.0.php" hash="d2152df00146562b30910ebe36c9b4e8"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="2ab92d2cf0f5fa7ccf7b61d9ab142a01"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="af5c814496fe07a20aac583cd68cb0b7"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="378accc07eb80b16029db84f56bed683"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="53cc6beed11e8631c11a008c5fd78ce1"/></dir></dir></dir><dir name="SweetMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="a1d28320ed21eaa6c20aa98c0b4e3492"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="a0dfcfa3e1e22bdb33005a999cb0867b"/></dir></dir><file name="Autovars.php" hash="fc3ebb5ffe5344ef74a294547614c28f"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83c32ef3e5433e701a10ef9cc5370d04"/></dir><dir name="Model"><file name="Cron.php" hash="a253d6bdbb03ca2d1fa87fde52c934ee"/><file name="Observer.php" hash="cb0e1e7a66c042205c415c5029a3b071"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MageMonkeyController.php" hash="f7d0e23ca908825800044a19ef68094a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8a81e6639cd53c96717a6b993d5fcd93"/><file name="config.xml" hash="fdd28267f29ce6ad0109f9b756a08979"/><file name="system.xml" hash="93e8f26427a0df9183f6680441ce23f6"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ebizmarts_MageMonkey.xml" hash="951aa15bc51345726e05080bd5fc084b"/><file name="Ebizmarts_Mandrill.xml" hash="ea4b352b5a0233330ecde76a0f9113dd"/><file name="Ebizmarts_AbandonedCart.xml" hash="48c4cfe8246d5a995e2836c43ab38d74"/><file name="Ebizmarts_Autoresponder.xml" hash="97302f94f5893147db18c4034d135256"/><file name="Ebizmarts_SweetMonkey.xml" hash="05d9393c17c76a589fd7681ed668d53f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="abandonedcart.xml" hash="14282d8f8739578d51c57def5df1227a"/><file name="autoresponder.xml" hash="d8dfb68cfd7c838cf29e9281a9a76c36"/></dir><file name="magemonkey.xml" hash="8eef43f9d728e252a5f7d7b6cea93a19"/></dir><dir name="template"><dir name="magemonkey"><dir name="checkout"><file name="subscribe.phtml" hash="41916fd7fccc22a83380dd5642b6a8cc"/></dir><file name="lists.phtml" hash="17f70d4e4bff4e14104381f927d80538"/></dir><dir name="ebizmarts_abandonedcart"><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="c078d029b2065e8b1938c3cfb24e8219"/></dir></dir><file name="items.phtml" hash="7be104a21130974fd4aae1f8727d5e7d"/></dir></dir><dir name="popup"><file name="emailcatcher.phtml" hash="409fd9df4f5b10d5e92e8b5434781c83"/></dir></dir><dir name="ebizmarts"><dir name="autoresponder"><dir name="backtostock"><dir name="catalog"><dir name="product"><file name="form.phtml" hash="c04b1aaf96617c47d1530538f2f9f5e0"/><file name="notice.phtml" hash="ba7963278c9ed51066c736cdc0b73978"/></dir></dir><file name="item.phtml" hash="55f82ee9207c9e5a2d6fbd77ffc9921f"/></dir><dir name="customer"><file name="list.phtml" hash="21d2f116e2f509943175c43bc5863582"/></dir><dir name="related"><file name="items.phtml" hash="7de2510a4dcfc9627a0dc514360bf423"/></dir><dir name="review"><file name="items.phtml" hash="d409b68a2bc8cbe6779f11cc2784d022"/></dir><dir name="wishlist"><file name="items.phtml" hash="73a0cf8ee106d4cff7a77c9c4a69e363"/></dir><file name="unsubscribe.phtml" hash="ca8ed1c5810e07f1cdc91edb64420417"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="mandrill.xml" hash="ba93e973a9019841c7d914ecd729983c"/><file name="abandonedcart.xml" hash="9ed91dab216911a13a2669bd81734180"/></dir><file name="magemonkey.xml" hash="4a2ba63a9d3002774b622e76339e6fbb"/></dir><dir name="template"><dir name="magemonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="2fc348d98ca7fbc41fb2a13e6cfb78de"/></dir><file name="oauth_wizard.phtml" hash="91b3472b4e9a5bc26851b76bfcea59c5"/><file name="resetlocal360.phtml" hash="ee9a0fa8f8b09323b9f0d7786f645c8f"/><file name="resetremote360.phtml" hash="2a67ad95f8ffabdc1e2d1e572c4118ae"/></dir></dir></dir><dir name="ebizmarts"><dir name="mandrill"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="3d00dbc6b6141e8e0b639ac92ac95da5"/></dir></dir></dir></dir><dir name="abandonedcart"><dir name="dashboard"><file name="index.phtml" hash="31a02b6aa63614bb2a52044195568f15"/><file name="salebar.phtml" hash="7a8c978ff415853550f9b1a3cbabfd1c"/><file name="totalbar.phtml" hash="95cb90a952f5548481c180004e39b7f1"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="e5bbebab8f645b423530764b4c844e47"/></dir></dir></dir></dir><dir name="autoresponder"><dir name="system"><dir name="config"><dir name="backtostock"><dir name="fieldset"><file name="hint.phtml" hash="623380a9c486eae57da00de6bd8b843d"/></dir></dir><dir name="birthday"><dir name="fieldset"><file name="hint.phtml" hash="d7f944a685769a46cb709f89c6e56f3b"/></dir></dir><dir name="fieldset"><file name="hint.phtml" hash="83cd4fef418fdcda52b3bb5e534fda85"/></dir><dir name="review"><dir name="fieldset"><file name="hint.phtml" hash="205b3fac2bc9682cdbdc9e3a8ec688df"/></dir></dir><dir name="wishlist"><dir name="fieldset"><file name="hint.phtml" hash="563ece5feca65f3ff728b89929cb2339"/></dir></dir></dir></dir></dir></dir><dir name="sweetmonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="16d8c86502ff2a2a01c7e7e8a421bfcb"/></dir><file name="autovars.phtml" hash="53da8402573546ecdcbe2f5e9b3ab57a"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="36ceaf0e511ecb2c785fb482c634ed2c"/><file name="abandoned_cart_mail_2.html" hash="ab628f7bf4f82d44d8d9a5b39c838e00"/><file name="abandoned_cart_mail_3.html" hash="c46eef13c346494f26f2e01ff7de9de2"/><file name="abandoned_cart_mail_generic.html" hash="c87513fa9e7fc18035c9b4421c51478e"/><file name="popup_coupon_template.html" hash="7411805f6751997e3de8a4f11196c14e"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="f909f0edf431e2da29281904612bd902"/><file name="birthday.html" hash="716502b8dd97b4b485264c18e7c75317"/><file name="neworder.html" hash="14db5244b8bb8e7b33ad32991ea8060f"/><file name="noactivity.html" hash="ca5ba93441cf80ccf0ea79aef039fc77"/><file name="relatedproducts.html" hash="9cd19f74d0c42967526d54a197453945"/><file name="review.html" hash="0d9d872e4a0d0290cea079ccec3658c5"/><file name="reviewcoupon.html" hash="925152cf7f223b6caf92f0a502233e03"/><file name="visitedproducts.html" hash="fc89e6fd3007ca57a6359553f389a656"/><file name="wishlist.html" hash="804468d3e1f758988c633d3b8eb547ea"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="181e91ed91dfea5fe7dab66af5719af8"/><file name="Ebizmarts_Mandrill.csv" hash="3dac3af57664fd34f5eda8abf4098ee0"/><file name="Ebizmarts_AbandonedCart.csv" hash="214bcd0e8cd6153c48fab236dcfdba1b"/><file name="Ebizmarts_Autoresponder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Ebizmarts_SweetMonkey.csv" hash="f0cdb51ba2052ce7f7ec1c9885ee5d3c"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="2072357ef844855f7a4607245b1e9a17"/><file name="magemonkey.js" hash="1a515d6697d533ee012754dd20e60345"/><file name="mailchimp-connected-ebizmarts-title.png" hash="c6bcb1aa606ecd3b0a9753bb48ddeb58"/><file name="mailchimp-ico.png" hash="14978ec398cede4060bc9b00365bb6c5"/><file name="mailchimp-section-background.png" hash="d4536261c6a3534fbb855428c0cca62c"/><file name="mailchimp-tab.png" hash="61972b4e063364071e81d8c9e10d8feb"/></dir><dir name="abandonedcart"><file name="abandonedcart.css" hash="bd6049fa8b17a1060e8a63fa29aefd94"/></dir><dir name="ebizmarts"><dir name="mandrill"><file name="mandrill-tab.png" hash="d7eaf9deef355e4b8b55a96070b90ffe"/><file name="mandrill.css" hash="d93f1f52db38195a4f85d20de519151e"/></dir><file name="ebizmarts-tab.png" hash="6dfa08c5cd4329d1df6e7b71fb1f925a"/><file name="ebizmarts.css" hash="a579734639953c1970ec26f56dda5837"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="8f25ca79fc6901215f713f0e048c4a9f"/><file name="monkey.js" hash="5984cd563aee48b7ba648066f733113a"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="Mandrill"><dir name="Mandrill"><file name="Exceptions.php" hash="54d952267c004cddeedd8d9be07698c8"/><file name="Exports.php" hash="3ed368771a7174af0e01287e3a3e030f"/><file name="Inbound.php" hash="32378db89f2f47fe158577c256837896"/><file name="Internal.php" hash="fa680d47c780922a111078827cad1505"/><file name="Ips.php" hash="c70c08b34454d2e7aebc31101cfdca81"/><file name="Messages.php" hash="f1f3c20b6c872c72dcc33790d6a3adf4"/><file name="Metadata.php" hash="57820ae2032206334fb6e6d9b12f4df2"/><file name="Rejects.php" hash="f40f9ef016c338c6ae9d161c3112eea6"/><file name="Senders.php" hash="875ddbeff3f920397c73c2c2797f3eea"/><file name="Subaccounts.php" hash="9b6b61a8e0364c9f917952deffe0320c"/><file name="Tags.php" hash="ee2f9e328d4d49aa8b0289978f7375b0"/><file name="Templates.php" hash="9920cf5d10bdcb5416193435c425f123"/><file name="Urls.php" hash="184c17ebb031f1f6e6dad687a4bf767d"/><file name="Users.php" hash="826dac98663eefce2f5ccc4a5b0d38e9"/><file name="Webhooks.php" hash="37ea24a982630aa321444b85392f3397"/><file name="Whitelists.php" hash="d132144d50c3b713c98ad699984e4e38"/></dir><file name="Mandrill.php" hash="cb6620ee6d4767e9b4edb1d574fe5dbe"/><file name="Message.php" hash="784920e095d8d9f0269b46f00071fcc9"/></dir></dir><dir name="js"><dir name="ebizmarts"><dir name="abandonedcart"><file name="popup.css" hash="06b3fe11e77211382137fd4e34004919"/><file name="xmark.png" hash="6f14c834def36c1185347c49021030a4"/></dir><dir name="autoresponders"><file name="visitedproducts.js" hash="61ef8d19642d349a19a43d018888f205"/><file name="visitedproductsstorecodes.js" hash="2cea5956611572cae6140db11c6d4672"/></dir><dir name="magemonkey"><file name="campaignCatcher.js" hash="db53c24296c7e2dddb46168632e05987"/></dir></dir></dir></target></contents>
|
40 |
<compatible/>
|
41 |
<dependencies/>
|
42 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Ebizmarts_MageMonkey</name>
|
4 |
+
<version>1.1.35</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>MailChimp integration for Magento by Ebizmarts</summary>
|
10 |
<description>Full MailChimp integration, automatic webhooks, multiple lists, interest groups</description>
|
11 |
+
<notes>1.1.35
|
12 |
--------
|
13 |
+
- Fixed typo in modman
|
14 |
+
- Firstname sent to MailChimp if customer name is available.
|
15 |
+
- Lastname sent to MailChimp if customer name is available.
|
16 |
+
- Fixed problem when displaying customer groups.
|
17 |
+
- Added storeId for unsubscription.
|
18 |
+
- Added check to see if first and last name are enabled on popup.
|
19 |
+
- Fixed typo error when sending orders to MailChimp manually.
|
20 |
+
- Corrected typo error on isAllowed for send to MailChimp action at orders grid.
|
21 |
+
- Fixed Yesnovariation.php to show A/B testing correctly.
|
22 |
+
- Added Dutch translations. (marcobax)
|
23 |
+
- Set Abandoned Cart to stop checking the same cart when an order has been made after its creation.
|
24 |
+
- Fixed ecommerce360 problem.
|
25 |
+
- Fixed problem with Popup coupon.
|
26 |
+
- Added MailChimp sign in all the modules.</notes>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
<authors><author><name>Ebizmarts Development Team</name><user>auto-converted</user><email>info@ebizmarts.com</email></author></authors>
|
28 |
+
<date>2015-08-21</date>
|
29 |
+
<time>17:29:01</time>
|
30 |
+
<contents><target name="magecommunity"><dir name="Ebizmarts"><dir name="MageMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="Bulksync"><dir name="Export"><file name="Form.php" hash="ae560b94bb9e440d660be69f5165b69f"/></dir><dir name="Import"><file name="Form.php" hash="0421281b9cfbc446329d7482c24c2c11"/></dir><dir name="Queue"><file name="Grid.php" hash="23b3edec3bc13fae8aee5b7292c4d4d1"/></dir><dir name="QueueExport"><file name="Grid.php" hash="68ec401dc23cddf8a1362c53aaab69b2"/></dir><dir name="QueueImport"><file name="Grid.php" hash="a695371e46328137d025b0fdf09944fe"/></dir><file name="Export.php" hash="62714f95580e489105914270b889a142"/><file name="Import.php" hash="d573582da25766aecba918d299c02586"/><file name="Queue.php" hash="c3cea1da02e0a09d7876958058ee091e"/><file name="QueueExport.php" hash="69536eee264346535f1c786d61b3cf84"/><file name="QueueImport.php" hash="d9fbc0d22f94df54f71116d0d484d1a3"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Memberactivity.php" hash="55fbb4519c6d862948dc4d8bf4416cfb"/></dir></dir></dir><dir name="Ecommerce"><file name="Grid.php" hash="b1ad37ffe9fe0752356d29a6548b0434"/></dir><dir name="Ecommerceapi"><dir name="Renderer"><file name="Items.php" hash="d72cfedf0cafc938becf9bd52801ba3a"/></dir><file name="Grid.php" hash="ee1be42cb6c893e3c59cac784df67fb3"/></dir><dir name="Memberactivity"><file name="Grid.php" hash="f4b341dd60b361098394618cf3382620"/></dir><dir name="Newsletter"><dir name="Subscriber"><dir name="Renderer"><file name="Firstname.php" hash="e814d3ba07b32e851585363b29e37b3a"/><file name="Lastname.php" hash="9a8b007c2db6add0572cf4012b28f63e"/></dir></dir></dir><dir name="Renderer"><file name="Date.php" hash="6e4e52403ec55df3aa2183fd4b51b095"/><file name="Importypes.php" hash="87c7a222e403781fcd8ee08cf0b489ba"/><file name="Lists.php" hash="15f5b5e087b49396a6f844e0f1bfb6b1"/><file name="Progress.php" hash="31eaaa5a7e99b21a4ed705971fe1001d"/><file name="Yesno.php" hash="c3173a8e8ea2d5f03531e7d996bbd259"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="31bf492c4e6137312c55bc437bf226cf"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="8f2a10ca1a1d239b3b231ca2cee5f96e"/></dir></dir><file name="Account.php" hash="fccf1faac2682d754655631e6451c026"/><file name="Date.php" hash="455120f4f2e8d7801f3c220e231b6789"/><file name="OauthWizard.php" hash="bd79f8b43d71137337e732fbeb415ffb"/><file name="ResetLocalEcommerce.php" hash="493126ac056c3585ed2d3020d62c76e1"/><file name="ResetRemoteEcommerce.php" hash="40d54bb2d6e7dd7bf3a91c9346f988bf"/></dir></dir><file name="Ecommerce.php" hash="48c237e8cc1223ad26a88d2409679fec"/><file name="Ecommerceapi.php" hash="a9f659502d96bcd1a69a88d15fcab4f9"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="14de0075005dafe3363716e3ffd10d20"/></dir><dir name="Customer"><dir name="Account"><file name="Lists.php" hash="64f0e5a8360750f6b19d8b5db0fcac23"/></dir></dir><file name="Lists.php" hash="1e92aea24b1a59b7d7ae7c264a18c96c"/><file name="Signup.php" hash="93b0e787e63a90a5fb4bacba1e03bd05"/></dir><dir name="Helper"><file name="Cache.php" hash="4e6cd9724c2788056aacacd37f5699cc"/><file name="Data.php" hash="d86f3c5e5fdab1691995e9703360d06f"/><file name="Export.php" hash="91f24805e9cbbe124f0c99cb8f1f1272"/><file name="Oauth2.php" hash="684a7b71d97b438081ebf332057ec8ea"/></dir><dir name="Model"><dir name="Custom"><file name="Collection.php" hash="304d372c1b8bd8d8d09dd743e03cdf66"/></dir><dir name="Email"><file name="Template.php" hash="81c9f040cf931dfb9e2a2484d9cc0b09"/></dir><dir name="Feed"><file name="Updates.php" hash="d6401edef548f125f238ae7d80a458fe"/></dir><dir name="Mysql4"><dir name="Apidebug"><file name="Collection.php" hash="7cc3fe74a46da1a4770b49eb7ac47f97"/></dir><dir name="Asyncorders"><file name="Collection.php" hash="e7b17fac028f7116c762e120b0f3f0a8"/></dir><dir name="Asyncsubscribers"><file name="Collection.php" hash="3458134c9a1ced7359db40f7b79a133f"/></dir><dir name="Bulksync"><dir name="Export"><file name="Collection.php" hash="ac64bc652233136189c504f678062374"/></dir><dir name="Import"><file name="Collection.php" hash="6cb3e09a817488f9bfa50f877a5c2b0b"/></dir><file name="Export.php" hash="eedc5a3549b3815f0d290eca3e0579df"/><file name="Import.php" hash="487fc6c0335ebf352081185d9afe3f88"/></dir><dir name="Ecommerce"><file name="Collection.php" hash="80319b6c991c510f1569800c80d384f1"/></dir><dir name="Lastorder"><file name="Collection.php" hash="38d6a7519cfe21caf7f5d22877aa1477"/></dir><file name="Apidebug.php" hash="2699eec825e8fb88b1d572728c10b7bc"/><file name="Asyncorders.php" hash="3eb64d883705854ce7899fd891101c63"/><file name="Asyncsubscribers.php" hash="a067c1e951ce61558e00f3aa8e5d15ef"/><file name="Ecommerce.php" hash="b3290a6170c8c8f275dcd4300840ea26"/><file name="Lastorder.php" hash="f3987329cb78c978bcc94ba375d9f998"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Account.php" hash="5bbf12b572234101af3e753ba74bcd41"/><file name="Attributes.php" hash="4ac1c98f3b3b84b2c93ddfcc3df5d817"/><file name="BulksyncDatasource.php" hash="36331ac3ecd034f914666a49e4d75cbc"/><file name="BulksyncStatus.php" hash="658f1f9d1ee7177d5dc094862bce155a"/><file name="Checkoutsubscribe.php" hash="28c8641a8fa4c336487af2227e152136"/><file name="CronProcessLimit.php" hash="3ca3a61f07b7aa84479eddda35efdde4"/><file name="CustomerGroup.php" hash="299b8514de098e02efe5393ebe7bdf65"/><file name="Ecommerce360.php" hash="24906da389cbf6b4a97c3edab5c7f020"/><file name="List.php" hash="bd9ef222e15d69b5c5038a98723d18c6"/><file name="OrderProcessLimit.php" hash="bc3add48e125caa904774cb6b669ba0c"/><file name="OrderStatus.php" hash="d3eeeee5d614e8fa83e258ce53cbed79"/><file name="Status.php" hash="e1e5cf6252241f39d0ceaff6f94d3afb"/><file name="TransactionalEmails.php" hash="b2f0d564a59372cba59d3aac7e4fe9e0"/><file name="WebhookDelete.php" hash="c90bbf8b0cf2a546c0f72193f8c605cf"/></dir></dir></dir><file name="Api.php" hash="ea7c720767bc58cb740d2f70100f699b"/><file name="Asyncorders.php" hash="3f60d1a1c1885268ae7e2ddfb1772feb"/><file name="Asyncsubscribers.php" hash="b79a42df357267205d7e74bb7c220755"/><file name="BulksyncExport.php" hash="71af9a6134b415a324dc9c937a5b2f8e"/><file name="BulksyncImport.php" hash="fb3716e235bc22cf91c4c17edf10ec23"/><file name="Cache.php" hash="89ac2fac903a566e6f6a3c0951bf274d"/><file name="Config.php" hash="276026d2d6ac8af349b7f2f82dc17668"/><file name="Cron.php" hash="3d0160a020ac8fd3b95251d40452d0b1"/><file name="Ecommerce.php" hash="f4581befe128963df3e3d062b1bc4d55"/><file name="Ecommerce360.php" hash="b2571e3e8e619360ed6f3fc9b8a67435"/><file name="Lastorder.php" hash="f2977e76892b0b1a5e031f8eabf93f18"/><file name="MCAPI.php" hash="c86a58e5a40b709aefecd05c813ee7be"/><file name="MCEXPORTAPI.php" hash="810b1c7b0f6daf93e11c7fbbc90980a3"/><file name="Monkey.php" hash="a8141ae234a5944d47510670f69c3d58"/><file name="Observer.php" hash="969b470a2711965f63c4ad254dc1f444"/><file name="Subscriber.php" hash="70423d00c03e9fb7436921f93052c75d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BulksyncController.php" hash="eca2f78696482b5422294a8b7ce1e1d5"/><file name="ConfigController.php" hash="6a307ba4b4a39991392935dd368ba1f8"/><file name="EcommerceController.php" hash="36cb709dd0eaf0592b4f5d8cf54f272d"/></dir><dir name="Customer"><file name="AccountController.php" hash="14479dffeacd3c2421ce5822f7d7f190"/></dir><file name="SignupController.php" hash="e379f52f8ee0191a4c7289cd2afcd19d"/><file name="WebhookController.php" hash="319878266b5463d5d8591b6a4fb5e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2ca3d47af5d16f1d5e0efb71346d3fe4"/><file name="config.xml" hash="9ed5ff6f5bd59e68ca77d9e82f0c2339"/><file name="system.xml" hash="9dd307a54fc966aade4676055e36f5b6"/></dir><dir name="sql"><dir name="monkey_setup"><file name="mysql4-install-0.0.1.php" hash="4df34769f4d5a8ceca90fd582500e3a9"/><file name="mysql4-upgrade-0.0.1-0.0.2.php" hash="d81147dab407bc55c59cddb5a764c53e"/><file name="mysql4-upgrade-0.0.2-0.0.3.php" hash="ce1925ff2ab03aa9fd6cbe43283ea37d"/><file name="mysql4-upgrade-0.0.3-0.0.4.php" hash="7f1e38bcf030e6346a9fd8321f1a4362"/><file name="mysql4-upgrade-0.0.4-0.0.5.php" hash="bbe6b895320effca77cc2c23431f043f"/><file name="mysql4-upgrade-0.0.5-0.0.6.php" hash="98b72d9ef4ec8078c09a1f641fc35a39"/><file name="mysql4-upgrade-0.0.6-0.0.7.php" hash="ea15755fc072e7c82b78063589360779"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="b2ec497921eb2bd9a97a318554fd980b"/><file name="mysql4-upgrade-1.1.21-1.1.22.php" hash="738e3d3e33c1a3a02bb101b89743cc5c"/><file name="mysql4-upgrade-1.1.23-1.1.24.php" hash="5a1bfdc8014edbc8b8c728954405a9f5"/><file name="mysql4-upgrade-1.1.33-1.1.34.php" hash="68f74c77460e76ea6153ebc823d49990"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="14750274ece5816d6c1ab490f7d610ab"/></dir></dir></dir><dir name="Mandrill"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6ca5fb9bf9254323e1f2b4447203b562"/></dir><file name="Userinfo.php" hash="7cd34efc0231424c9e2f5e662154c41c"/></dir></dir><dir name="Templates"><dir name="Templates"><file name="Grid.php" hash="1ecdb6b04fbd16043de908f261353b8d"/></dir><file name="Templates.php" hash="1682fe6d39605a9839bf3cdb3c1185b7"/></dir><dir name="Users"><dir name="Senders"><file name="Grid.php" hash="292097a493de241540d3e3aea463241f"/></dir><file name="Senders.php" hash="4a4449652c495a9d4c12966ab007e7a4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="86fcaa6a66a5a628ded7215172448daf"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="7a387e01c007e5bbca225dd8f3e1f2d5"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Userinfo.php" hash="12a9c9c27c985efd021a4e6c7fdfcf5e"/></dir></dir><file name="Config.php" hash="2219d951bf6b2553ec0284b65d8d92a2"/></dir><file name="Customcollection.php" hash="9b5766c0393a54b4356254725b4d78b2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Mandrill"><file name="UsersController.php" hash="82f6e810f51b12b65d009bdeaded95e8"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ea87cce062596388f7e9507943e8bb5"/><file name="config.xml" hash="45d3f59fe2c04eb0aca424cf3606052c"/><file name="system.xml" hash="d05b90ca129297b6ffda52a4ba1fd26a"/></dir></dir><dir name="AbandonedCart"><dir name="Block"><dir name="Adminhtml"><dir name="Abandonedmails"><file name="Grid.php" hash="f2813a7ec47e20b78874a0dbb1461b3e"/></dir><dir name="Abandonedorder"><file name="Grid.php" hash="5ab9e3884d3306d78e78133f09e22614"/></dir><dir name="Dashboard"><file name="Sales.php" hash="b0d6fce3a5f4ef5a891c8578eb36ef97"/><file name="Totals.php" hash="4cd3c1e0d8d357c79ec6e7a2ed98c6a0"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6358bc58857011c08dedcbab885b461f"/></dir><file name="Date.php" hash="323a49af281f06dfa72c1d3512257e04"/></dir></dir><file name="Abandonedmails.php" hash="c2714b5a6cb534c91564ebc340fe3f26"/><file name="Abandonedorder.php" hash="1a14da87647612a8773f34f70bc05dea"/><file name="Dashboard.php" hash="c27d5ec29455176fff7e2fac86fcce21"/></dir><dir name="Email"><dir name="Order"><file name="Items.php" hash="5c4be14f72d2cfe0a25058246d016d25"/></dir></dir><dir name="Popup"><file name="Emailcatcher.php" hash="319fd3d617a9d092f38c910baaf86693"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7395f6fc74f1851de4de9e962964f2d4"/></dir><dir name="Model"><dir name="Resource"><dir name="Abtesting"><file name="Collection.php" hash="f96fe4be550bef6daabc5d211c86aca0"/></dir><dir name="Mailssent"><file name="Collection.php" hash="dc1e2c44eb53381d57d10a6bc08ad497"/></dir><dir name="Order"><file name="Collection.php" hash="a079410c43e1afbb428b7163d1537482"/></dir><dir name="Popup"><file name="Collection.php" hash="af37502f9802c7574318ab28a8fb1b16"/></dir><file name="Abtesting.php" hash="46e70f8507676e157ddec44f66094e59"/><file name="Mailssent.php" hash="80f0b4e3f29d10951362f07eb45a3ece"/><file name="Popup.php" hash="446921e9b1da1973c83665e8f749bbbb"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="a4f5e052810187fb824933e76ea8a1cf"/><file name="Cmspage.php" hash="89bfcbe90a7b2f396a56b3f1fe72dbd2"/><file name="Customergroup.php" hash="74af027c3fb6745d0e45938f83394489"/><file name="Discounttype.php" hash="55c251fafbd10821d6c18c381c307888"/><file name="Maxemails.php" hash="63b860ace056552d159ada056eebfbd7"/><file name="Unit.php" hash="07fa0c25182538e08479cc4f91c7ca16"/><file name="Yesnovariation.php" hash="d24e4bf79afe73e85422c53835de0012"/></dir></dir><file name="Abtesting.php" hash="fdf9df78b6656c898fd74fbcb3ec51e1"/><file name="Config.php" hash="3571e63f143d9b49a272da02b0a48f84"/><file name="Cron.php" hash="69f28a82ec42bd5bde295974b42f3acc"/><file name="EventObserver.php" hash="717246fa2ef5b4e13a4eb36e23ac78e5"/><file name="Mailssent.php" hash="e238f4116cb473cdcfb3a909d08adaa4"/><file name="Popup.php" hash="d2a4922acc0c5c3994cbc0b2114658b8"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AbandonedmailsController.php" hash="060e46a386be3365ae23722c951de848"/><file name="AbandonedorderController.php" hash="3b74880847f1e33d06043eb673b6c39a"/></dir><file name="AbandonedController.php" hash="70aa47c1c680760e849e8fc032bfab08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62708e88154b231e694210cca0aa6c97"/><file name="config.xml" hash="11d74c0c2ecf82c86734e72f23b056b6"/><file name="system.xml" hash="7f801e216f7a8752924bc43d3b1a427b"/></dir><dir name="sql"><dir name="ebizmarts_abandonedcart_setup"><file name="mysql4-install-0.1.0.php" hash="0e1a8c0391654c480773b78a50db5a83"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="4835436b744f8cbff61a66c2e345976f"/><file name="mysql4-upgrade-0.1.18-0.1.19.php" hash="e51b332cb70c81ee472b586fda4e8a7e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="2e87d09a5008ac2f2432a25e08474c87"/><file name="mysql4-upgrade-0.1.20-0.1.21.php" hash="c461ba10961b4ee4e9385173d4264617"/><file name="mysql4-upgrade-0.1.29-0.1.30.php" hash="e9fdf4551cf19b488ed68ca0dd55ab67"/><file name="mysql4-upgrade-0.1.30-0.1.31.php" hash="2889ca071f7b974f2cd85a6b9405e541"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="60daa0d70a1af929a39d6e20ee52ee9c"/></dir></dir></dir><dir name="Autoresponder"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backtostock"><dir name="Fieldset"><file name="Hint.php" hash="196c96e0bdfb853c42510d8cef4bf69a"/></dir></dir><dir name="Birthday"><dir name="Fieldset"><file name="Hint.php" hash="bff790a4ecf1f7ed7ac5d966cb8d516f"/></dir></dir><dir name="Fieldset"><file name="Hint.php" hash="eea231bb3f99b0f3708c2d43144e0f44"/></dir><dir name="Review"><dir name="Fieldset"><file name="Hint.php" hash="d9906e111824893ef363926dd2b485eb"/></dir></dir><dir name="Wishlist"><dir name="Fieldset"><file name="Hint.php" hash="75a66f64700f02eebfa391f953bc42d0"/></dir></dir></dir></dir></dir><dir name="Backtostock"><file name="Notice.php" hash="30efc30519a1ecb31d39a5fe59a6ae90"/></dir><dir name="Customer"><dir name="Account"><file name="List.php" hash="755d6d07d113450617bc31e8bc039df0"/></dir></dir><dir name="Email"><dir name="Backtostock"><file name="Item.php" hash="178b97ceae8c488bf49cb44b6f5f5d11"/></dir><dir name="Related"><file name="Items.php" hash="831fda241af415c53d47274ecc395299"/></dir><dir name="Review"><file name="Items.php" hash="de3dd88f0a2399314c746b08cbe4ab82"/></dir><dir name="Wishlist"><file name="Items.php" hash="5c712e43bca1a83bf7592e082acca863"/></dir></dir><dir name="Review"><file name="Form.php" hash="cb10cbe1702bc6261874ed68eec47a00"/></dir><file name="Unsubscribe.php" hash="bb945f9a63f38ca0b6cdd2a0daed5416"/></dir><dir name="Helper"><file name="Data.php" hash="45eec5e986cf0997ff5f97f7148f0ec3"/></dir><dir name="Model"><dir name="Resource"><dir name="Backtostock"><file name="Collection.php" hash="95a70c48dce1bac7fcb86447bb899057"/></dir><dir name="Backtostockalert"><file name="Collection.php" hash="c0c5d87c559d2e4011697b1a0ccf4846"/></dir><dir name="Review"><file name="Collection.php" hash="098061d250555679c9f609d2087ef9d4"/></dir><dir name="Unsubscribe"><file name="Collection.php" hash="11048027437c0a5bc1478e4f2cdcc51d"/></dir><dir name="Visited"><file name="Collection.php" hash="b09c0ce08ac30cc30f974e5c744eabf1"/></dir><file name="Backtostock.php" hash="85c29c73ba30f2fdf819fc88f5e03098"/><file name="Backtostockalert.php" hash="148ae085ef93a7cf6e52cdd60f1ca9a2"/><file name="Review.php" hash="cf78994db6e262e42a589b6538a45a32"/><file name="Unsubscribe.php" hash="3b9e4d09dbb7ba483a5d16b6312050e6"/><file name="Visited.php" hash="55f2d0c1f90b41e852ecbf964925dc10"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="4de4d5c373fa1ea373751cbd5ed7efbc"/><file name="Couponcounter.php" hash="18049531633e26b8970935e6b9c73823"/><file name="Customergroup.php" hash="aa31f980b1d28248f137fe2a06b3ba2c"/><file name="Discounttype.php" hash="1228055f8abc3bffba6020f4bb4210e0"/><file name="Generaltype.php" hash="463210c06e00794b79df38a61dfa56c2"/><file name="Hours.php" hash="db8c055c1fc0628f5fad84fc15c6d389"/><file name="Newordertrigger.php" hash="757bcc13562d4a5b905d57920906411f"/><file name="Time.php" hash="4b491667d8ea9816b07f584e84556556"/></dir></dir><file name="Backtostock.php" hash="fa62a4685c70474a2ce3da394e68c597"/><file name="Backtostockalert.php" hash="eabe65c559ee1d93bc8b67dc0bb32a40"/><file name="Config.php" hash="75a65035e240a5154b2037feceb4d864"/><file name="Cron.php" hash="c629466715e0dcad4d2ac64a27f36bcb"/><file name="EventObserver.php" hash="6fbdbe95331c9b4a15853b49d3984d6e"/><file name="Review.php" hash="c14806dfb106363262b9911e8d06f628"/><file name="Unsubscribe.php" hash="cb20baf948256b9b70a13ed52ab91bab"/><file name="Visited.php" hash="2e9f119fc630cefc50f5a2a21546ebfc"/></dir><dir name="controllers"><file name="AutoresponderController.php" hash="60f7a997438b80a76a7c5c08db8d11d5"/><file name="BacktostockController.php" hash="34b99cc172104773070d9d39cb290534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59a240f12b496566f1a2b1de5f053e96"/><file name="config.xml" hash="ae176e6d72c66cf82c568dac6da82505"/><file name="system.xml" hash="790c6d43450e7a251c19e09a78cf9d93"/></dir><dir name="sql"><dir name="ebizmarts_autoresponder_setup"><file name="mysql4-install-0.1.0.php" hash="d2152df00146562b30910ebe36c9b4e8"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="2ab92d2cf0f5fa7ccf7b61d9ab142a01"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="af5c814496fe07a20aac583cd68cb0b7"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="378accc07eb80b16029db84f56bed683"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="53cc6beed11e8631c11a008c5fd78ce1"/></dir></dir></dir><dir name="SweetMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="a1d28320ed21eaa6c20aa98c0b4e3492"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="a0dfcfa3e1e22bdb33005a999cb0867b"/></dir></dir><file name="Autovars.php" hash="fc3ebb5ffe5344ef74a294547614c28f"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83c32ef3e5433e701a10ef9cc5370d04"/></dir><dir name="Model"><file name="Cron.php" hash="5257a6a5f016ea353fcaeaabfdd9301c"/><file name="Observer.php" hash="cb0e1e7a66c042205c415c5029a3b071"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MageMonkeyController.php" hash="f7d0e23ca908825800044a19ef68094a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8a81e6639cd53c96717a6b993d5fcd93"/><file name="config.xml" hash="53764df5e2f3b21a6e3901c4449d5e20"/><file name="system.xml" hash="93e8f26427a0df9183f6680441ce23f6"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ebizmarts_MageMonkey.xml" hash="951aa15bc51345726e05080bd5fc084b"/><file name="Ebizmarts_Mandrill.xml" hash="ea4b352b5a0233330ecde76a0f9113dd"/><file name="Ebizmarts_AbandonedCart.xml" hash="48c4cfe8246d5a995e2836c43ab38d74"/><file name="Ebizmarts_Autoresponder.xml" hash="97302f94f5893147db18c4034d135256"/><file name="Ebizmarts_SweetMonkey.xml" hash="05d9393c17c76a589fd7681ed668d53f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="abandonedcart.xml" hash="14282d8f8739578d51c57def5df1227a"/><file name="autoresponder.xml" hash="d8dfb68cfd7c838cf29e9281a9a76c36"/></dir><file name="magemonkey.xml" hash="8eef43f9d728e252a5f7d7b6cea93a19"/></dir><dir name="template"><dir name="magemonkey"><dir name="checkout"><file name="subscribe.phtml" hash="d974501533c084c82bcbbc85a7fa4cbc"/></dir><file name="lists.phtml" hash="8562e11e1d5e60807e7d8d991b8d1fb1"/></dir><dir name="ebizmarts_abandonedcart"><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="c078d029b2065e8b1938c3cfb24e8219"/></dir></dir><file name="items.phtml" hash="7be104a21130974fd4aae1f8727d5e7d"/></dir></dir><dir name="popup"><file name="emailcatcher.phtml" hash="c827cbc181d2b98dfb3e15d4bdfa7376"/></dir></dir><dir name="ebizmarts"><dir name="autoresponder"><dir name="backtostock"><dir name="catalog"><dir name="product"><file name="form.phtml" hash="c04b1aaf96617c47d1530538f2f9f5e0"/><file name="notice.phtml" hash="ba7963278c9ed51066c736cdc0b73978"/></dir></dir><file name="item.phtml" hash="55f82ee9207c9e5a2d6fbd77ffc9921f"/></dir><dir name="customer"><file name="list.phtml" hash="21d2f116e2f509943175c43bc5863582"/></dir><dir name="related"><file name="items.phtml" hash="7de2510a4dcfc9627a0dc514360bf423"/></dir><dir name="review"><file name="items.phtml" hash="d409b68a2bc8cbe6779f11cc2784d022"/></dir><dir name="wishlist"><file name="items.phtml" hash="73a0cf8ee106d4cff7a77c9c4a69e363"/></dir><file name="unsubscribe.phtml" hash="ca8ed1c5810e07f1cdc91edb64420417"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="mandrill.xml" hash="ba93e973a9019841c7d914ecd729983c"/><file name="abandonedcart.xml" hash="9ed91dab216911a13a2669bd81734180"/></dir><file name="magemonkey.xml" hash="4a2ba63a9d3002774b622e76339e6fbb"/></dir><dir name="template"><dir name="magemonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="d5613b376031fd67f883d64cfc20eb50"/></dir><file name="oauth_wizard.phtml" hash="91b3472b4e9a5bc26851b76bfcea59c5"/><file name="resetlocal360.phtml" hash="ee9a0fa8f8b09323b9f0d7786f645c8f"/><file name="resetremote360.phtml" hash="2a67ad95f8ffabdc1e2d1e572c4118ae"/></dir></dir></dir><dir name="ebizmarts"><dir name="mandrill"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ae30b23b623555f4945c56292f004003"/></dir></dir></dir></dir><dir name="abandonedcart"><dir name="dashboard"><file name="index.phtml" hash="31a02b6aa63614bb2a52044195568f15"/><file name="salebar.phtml" hash="7a8c978ff415853550f9b1a3cbabfd1c"/><file name="totalbar.phtml" hash="95cb90a952f5548481c180004e39b7f1"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ba6ebe4bb4a1e8ed5c964fc17b381785"/></dir></dir></dir></dir><dir name="autoresponder"><dir name="system"><dir name="config"><dir name="backtostock"><dir name="fieldset"><file name="hint.phtml" hash="623380a9c486eae57da00de6bd8b843d"/></dir></dir><dir name="birthday"><dir name="fieldset"><file name="hint.phtml" hash="d7f944a685769a46cb709f89c6e56f3b"/></dir></dir><dir name="fieldset"><file name="hint.phtml" hash="4f33fe2e4d8f997b6adca212450e4d9b"/></dir><dir name="review"><dir name="fieldset"><file name="hint.phtml" hash="205b3fac2bc9682cdbdc9e3a8ec688df"/></dir></dir><dir name="wishlist"><dir name="fieldset"><file name="hint.phtml" hash="563ece5feca65f3ff728b89929cb2339"/></dir></dir></dir></dir></dir></dir><dir name="sweetmonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="9d3cbc62ce5f2afc38f5c1936a29484c"/></dir><file name="autovars.phtml" hash="53da8402573546ecdcbe2f5e9b3ab57a"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="36ceaf0e511ecb2c785fb482c634ed2c"/><file name="abandoned_cart_mail_2.html" hash="ab628f7bf4f82d44d8d9a5b39c838e00"/><file name="abandoned_cart_mail_3.html" hash="c46eef13c346494f26f2e01ff7de9de2"/><file name="abandoned_cart_mail_generic.html" hash="c87513fa9e7fc18035c9b4421c51478e"/><file name="popup_coupon_template.html" hash="7411805f6751997e3de8a4f11196c14e"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="f909f0edf431e2da29281904612bd902"/><file name="birthday.html" hash="716502b8dd97b4b485264c18e7c75317"/><file name="neworder.html" hash="14db5244b8bb8e7b33ad32991ea8060f"/><file name="noactivity.html" hash="ca5ba93441cf80ccf0ea79aef039fc77"/><file name="relatedproducts.html" hash="9cd19f74d0c42967526d54a197453945"/><file name="review.html" hash="0d9d872e4a0d0290cea079ccec3658c5"/><file name="reviewcoupon.html" hash="925152cf7f223b6caf92f0a502233e03"/><file name="visitedproducts.html" hash="fc89e6fd3007ca57a6359553f389a656"/><file name="wishlist.html" hash="804468d3e1f758988c633d3b8eb547ea"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="181e91ed91dfea5fe7dab66af5719af8"/><file name="Ebizmarts_Mandrill.csv" hash="3dac3af57664fd34f5eda8abf4098ee0"/><file name="Ebizmarts_AbandonedCart.csv" hash="214bcd0e8cd6153c48fab236dcfdba1b"/><file name="Ebizmarts_Autoresponder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Ebizmarts_SweetMonkey.csv" hash="f0cdb51ba2052ce7f7ec1c9885ee5d3c"/></dir><dir name="nl_NL"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="64df67da5c2759572c80c47677fc4244"/><file name="abandoned_cart_mail_2.html" hash="3e65ab1c4140408422b6fd7e190a2f4b"/><file name="abandoned_cart_mail_3.html" hash="de4cbef63748e20638017e04827d39b9"/><file name="abandoned_cart_mail_generic.html" hash="de90f1d4f52d4603e3c08ebd4c5aa4e5"/><file name="popup_coupon_template.html" hash="8059d68fce7783956033ff0cf27f2c0b"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="d5feeeaaf9f7416dcfb072e1b39844fa"/><file name="birthday.html" hash="b7099ba5f0de5e8c7f56f1aca1ec8779"/><file name="neworder.html" hash="dd016910da8029a2b2266e9a82eac167"/><file name="noactivity.html" hash="6d3b63329f5d664a9f81b2aba55b5588"/><file name="relatedproducts.html" hash="5bb28d77374568fbab07519048edb301"/><file name="review.html" hash="a1116b4a34c72fb94d8945730096ed83"/><file name="reviewcoupon.html" hash="bdd27369d3e76d915489399d95a502fc"/><file name="visitedproducts.html" hash="74941796112fba1158707ab6bdf4b2d4"/><file name="wishlist.html" hash="e456275499caa1cc018d7da1da32d525"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="3e0b1485b10cf7c9f6f64437f870c7fe"/><file name="Ebizmarts_SweetMonkey.csv" hash="063c94afbaa6e2fbe2028580209bc09b"/><file name="Ebizmarts_AbandonedCart.csv" hash="099104a7a9492249c0e24909145abfa3"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="2072357ef844855f7a4607245b1e9a17"/><file name="magemonkey.js" hash="1a515d6697d533ee012754dd20e60345"/><file name="mailchimp-connected-ebizmarts-title.png" hash="c6bcb1aa606ecd3b0a9753bb48ddeb58"/><file name="mailchimp-ico.png" hash="14978ec398cede4060bc9b00365bb6c5"/><file name="mailchimp-section-background.png" hash="d4536261c6a3534fbb855428c0cca62c"/><file name="mailchimp-tab.png" hash="61972b4e063364071e81d8c9e10d8feb"/></dir><dir name="abandonedcart"><file name="abandonedcart.css" hash="bd6049fa8b17a1060e8a63fa29aefd94"/></dir><dir name="ebizmarts"><dir name="mandrill"><file name="mandrill-tab.png" hash="d7eaf9deef355e4b8b55a96070b90ffe"/><file name="mandrill.css" hash="d93f1f52db38195a4f85d20de519151e"/></dir><file name="ebizmarts-tab.png" hash="6dfa08c5cd4329d1df6e7b71fb1f925a"/><file name="ebizmarts.css" hash="a579734639953c1970ec26f56dda5837"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="8f25ca79fc6901215f713f0e048c4a9f"/><file name="monkey.js" hash="5984cd563aee48b7ba648066f733113a"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="Mandrill"><dir name="Mandrill"><file name="Exceptions.php" hash="54d952267c004cddeedd8d9be07698c8"/><file name="Exports.php" hash="3ed368771a7174af0e01287e3a3e030f"/><file name="Inbound.php" hash="32378db89f2f47fe158577c256837896"/><file name="Internal.php" hash="fa680d47c780922a111078827cad1505"/><file name="Ips.php" hash="c70c08b34454d2e7aebc31101cfdca81"/><file name="Messages.php" hash="f1f3c20b6c872c72dcc33790d6a3adf4"/><file name="Metadata.php" hash="57820ae2032206334fb6e6d9b12f4df2"/><file name="Rejects.php" hash="f40f9ef016c338c6ae9d161c3112eea6"/><file name="Senders.php" hash="875ddbeff3f920397c73c2c2797f3eea"/><file name="Subaccounts.php" hash="9b6b61a8e0364c9f917952deffe0320c"/><file name="Tags.php" hash="ee2f9e328d4d49aa8b0289978f7375b0"/><file name="Templates.php" hash="9920cf5d10bdcb5416193435c425f123"/><file name="Urls.php" hash="184c17ebb031f1f6e6dad687a4bf767d"/><file name="Users.php" hash="826dac98663eefce2f5ccc4a5b0d38e9"/><file name="Webhooks.php" hash="37ea24a982630aa321444b85392f3397"/><file name="Whitelists.php" hash="d132144d50c3b713c98ad699984e4e38"/></dir><file name="Mandrill.php" hash="cb6620ee6d4767e9b4edb1d574fe5dbe"/><file name="Message.php" hash="784920e095d8d9f0269b46f00071fcc9"/></dir></dir><dir name="js"><dir name="ebizmarts"><dir name="abandonedcart"><file name="popup.css" hash="06b3fe11e77211382137fd4e34004919"/><file name="xmark.png" hash="6f14c834def36c1185347c49021030a4"/></dir><dir name="autoresponders"><file name="visitedproducts.js" hash="61ef8d19642d349a19a43d018888f205"/><file name="visitedproductsstorecodes.js" hash="2cea5956611572cae6140db11c6d4672"/></dir><dir name="magemonkey"><file name="campaignCatcher.js" hash="9f4c4fc34c221e593186f7acb70f64b2"/></dir></dir></dir></target></contents>
|
31 |
<compatible/>
|
32 |
<dependencies/>
|
33 |
</package>
|