dotmailermagento - Version 5.1.1

Version Notes

New Automation improvements.

Transactional Emails, Custom Customer Attributes, Reports & More

This release includes some great new functionality as well as including a number of fixes.

##IMPORTANT## Dynamic content URL's have been changed so will need updating within your dotMailer account to ensure they continue working correctly. ##IMPORTANT##

Release Highlights:

+ Transactional Emails: Replace the standard emails Magento currently sends to your customers and guests with beautifully created campaigns from dotMailer. Emails include new account, new order, dispatch, cancel and refund emails. **A dotMailer child account is required to enable this functionality**

+ Custom Customer Attributes: Sync your custom created customer attributes to dotMailer

+ Dynamic Content Styling: Apply custom CSS to all dynamic content pages e.g. font size, colour and type.

+ Reporting: Now within the Newsletter section in Magento you can view the import status of contacts and orders, as well as the sending status of transactional and lost basket emails.

Download this release

Release Info

Developer Calin Diacon
Extension dotmailermagento
Version 5.1.1
Comparing to
See all releases


Code changes from version 5.1.0 to 5.1.1

app/code/community/Dotdigitalgroup/Email/Model/Automation.php CHANGED
@@ -43,32 +43,41 @@ class Dotdigitalgroup_Email_Model_Automation extends Mage_Core_Model_Abstract
43
 
44
  public function enrollment()
45
  {
 
46
  $automationCollection = $this->getCollection()
47
- ->addFieldToFilter( 'enrolment_status', self::AUTOMATION_STATUS_PENDING )
48
- ;
49
  $automationCollection->getSelect()->group( 'automation_type' );
50
- //limit because of the each contact request to get the id
51
- $automationCollection->getSelect()->limit( $this->limit );
52
-
53
- $contacts = array();
54
-
55
- foreach ( $automationCollection as $automation ) {
56
- $type = $automation->getAutomationType();
57
- //customerid, subscriberid, wishlistid..
58
- $email = $automation->getEmail();
59
- $this->typeId = $automation->getTypeId();
60
- $this->websiteId = $automation->getWebsiteId();
61
- $this->programId = $automation->getProgramId();
62
- $this->storeName = $automation->getStoreName();
63
- $contactId = Mage::helper( 'ddg' )->getContactId( $email, $this->websiteId );
64
- //contact id is valid, can update datafields
65
- if ( $contactId ) {
66
- //need to update datafields
67
- $this->updateDatafieldsByType( $this->automationType, $email );
68
- $contacts[ $automation->getId() ] = $contactId;
69
- } else {
70
- // the contact is suppressed or the request failed
71
- $automation->setEnrolmentStatus('Suppressed')->save();
 
 
 
 
 
 
 
 
72
  }
73
  //only for subscribed contacts
74
  if ( ! empty( $contacts ) && $type != '' && $this->_checkCampignEnrolmentActive( $this->programId ) ) {
@@ -82,11 +91,12 @@ class Dotdigitalgroup_Email_Model_Automation extends Mage_Core_Model_Abstract
82
  } elseif ( $this->programMessage == 'Error: ERROR_PROGRAM_NOT_ACTIVE ' ) {
83
  $this->programStatus = 'Deactivated';
84
  }
 
 
 
 
85
  }
86
 
87
- //update contacts with the new status, and log the error message if failes
88
- $this->getResource()->updateContacts($contacts, $this->programStatus, $this->programMessage);
89
-
90
  }
91
  /**
92
  * update single contact datafields for this automation type.
43
 
44
  public function enrollment()
45
  {
46
+ //automation statuses to filter
47
  $automationCollection = $this->getCollection()
48
+ ->addFieldToSelect( 'automation_type' )
49
+ ->addFieldToFilter( 'enrolment_status', self::AUTOMATION_STATUS_PENDING );
50
  $automationCollection->getSelect()->group( 'automation_type' );
51
+ //active types
52
+ $automationTypes = $automationCollection->getColumnValues( 'automation_type' );
53
+ //send the campaign by each types
54
+ foreach ( $automationTypes as $type ) {
55
+ $contacts = array();
56
+ //reset the collection
57
+ $automationCollection->clear();
58
+ $automationCollection = $this->getCollection()
59
+ ->addFieldToFilter( 'enrolment_status', self::AUTOMATION_STATUS_PENDING )
60
+ ->addFieldToFilter( 'automation_type', $type );
61
+ //limit because of the each contact request to get the id
62
+ $automationCollection->getSelect()->limit( $this->limit );
63
+ foreach ( $automationCollection as $automation ) {
64
+ $type = $automation->getAutomationType();
65
+ //customerid, subscriberid, wishlistid..
66
+ $email = $automation->getEmail();
67
+ $this->typeId = $automation->getTypeId();
68
+ $this->websiteId = $automation->getWebsiteId();
69
+ $this->programId = $automation->getProgramId();
70
+ $this->storeName = $automation->getStoreName();
71
+ $contactId = Mage::helper( 'ddg' )->getContactId( $email, $this->websiteId );
72
+ //contact id is valid, can update datafields
73
+ if ( $contactId ) {
74
+ //need to update datafields
75
+ $this->updateDatafieldsByType( $this->automationType, $email );
76
+ $contacts[ $automation->getId() ] = $contactId;
77
+ } else {
78
+ // the contact is suppressed or the request failed
79
+ $automation->setEnrolmentStatus('Suppressed')->save();
80
+ }
81
  }
82
  //only for subscribed contacts
83
  if ( ! empty( $contacts ) && $type != '' && $this->_checkCampignEnrolmentActive( $this->programId ) ) {
91
  } elseif ( $this->programMessage == 'Error: ERROR_PROGRAM_NOT_ACTIVE ' ) {
92
  $this->programStatus = 'Deactivated';
93
  }
94
+ //update contacts with the new status, and log the error message if failes
95
+ $num = $this->getResource()->updateContacts($contacts, $this->programStatus, $this->programMessage);
96
+ if ($num)
97
+ Mage::helper('ddg')->log('Automation type : ' . $type . ', updated no : ' . $num);
98
  }
99
 
 
 
 
100
  }
101
  /**
102
  * update single contact datafields for this automation type.
app/code/community/Dotdigitalgroup/Email/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Dotdigitalgroup_Email>
5
- <version>5.1.0</version>
6
  </Dotdigitalgroup_Email>
7
  </modules>
8
  <frontend>
@@ -134,7 +134,7 @@
134
  </ddg_automation>
135
  <adminhtml>
136
  <rewrite>
137
- <system_email_template_edit>ddg_automation/system_email_template_edit</system_email_template_edit>
138
  </rewrite>
139
  </adminhtml>
140
  </blocks>
2
  <config>
3
  <modules>
4
  <Dotdigitalgroup_Email>
5
+ <version>5.1.1</version>
6
  </Dotdigitalgroup_Email>
7
  </modules>
8
  <frontend>
134
  </ddg_automation>
135
  <adminhtml>
136
  <rewrite>
137
+ <system_email_template_edit>Dotdigitalgroup_Email_Block_System_Email_Template_Edit</system_email_template_edit>
138
  </rewrite>
139
  </adminhtml>
140
  </blocks>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dotmailermagento</name>
4
- <version>5.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -25,10 +25,10 @@ Release Highlights:&#xD;
25
  + Dynamic Content Styling: Apply custom CSS to all dynamic content pages e.g. font size, colour and type.&#xD;
26
  &#xD;
27
  + Reporting: Now within the Newsletter section in Magento you can view the import status of contacts and orders, as well as the sending status of transactional and lost basket emails.</notes>
28
- <authors><author><name>Calin Diacon</name><user>cdiacon</user><email>cdiacon@gmail.com</email></author><author><name>Adeel Qamar</name><user>adeel</user><email>adeel.qamar@dotmailer.com</email></author></authors>
29
- <date>2015-11-16</date>
30
- <time>15:24:48</time>
31
- <contents><target name="magecommunity"><dir name="Dotdigitalgroup"><dir name="Email"><dir name="Block"><dir name="Adminhtml"><dir name="Automation"><dir name="Edit"><file name="Form.php" hash="436877f0f8c2df572f33b25666d78769"/></dir><file name="Edit.php" hash="a9494e5817d7ae19c206f15260eb6c81"/><file name="Grid.php" hash="83a8f872ac9832179862ceb49cd3c4cc"/></dir><file name="Automation.php" hash="7e1b876bf5619cb4533fb935b67b7103"/><dir name="Campaign"><file name="Grid.php" hash="ed3b11f23f8029c7af4dd63f5dceed0e"/></dir><file name="Campaign.php" hash="1b09266adba5191df1d39330e4832d41"/><dir name="Catalog"><file name="Grid.php" hash="e5545ec424a1011117e869984e90a754"/></dir><file name="Catalog.php" hash="f9d97d5ff57987714788ef0511405d46"/><dir name="Column"><dir name="Renderer"><file name="Delete.php" hash="2741323edb5151b4211244ccf115d796"/><file name="Imported.php" hash="894d7ead94e40d20cabb082346830c35"/><file name="Reset.php" hash="f85c3f41af7e6929dc169fb231e24162"/><file name="Script.php" hash="d4f0356fc226028af5857549733a84d3"/><file name="Status.php" hash="42180e34e981f2998c35697bf049c786"/><file name="Sync.php" hash="253fb9fbfc1c450e1ae8332b466896da"/><file name="Website.php" hash="ca2c1f34b86e5ccf022fdc395cf07084"/></dir></dir><dir name="Config"><dir name="Automation"><file name="Customdatafields.php" hash="7ae2aef7d636c19dd2fcc9ba57ab4635"/></dir><file name="Customdatafields.php" hash="ee28b3fe691ade18fcc217b330d8dac6"/><dir name="Rules"><file name="Customdatafields.php" hash="c56d50e7eb3854ec67e026023d38d4d7"/></dir><file name="Select.php" hash="b92091e08d7e24032be9b8aea033b81d"/></dir><dir name="Contact"><dir name="Edit"><file name="Form.php" hash="1d0f6eba1f3a59c38ccfc01b3d5eb447"/></dir><file name="Edit.php" hash="051408ea54be21761e1ab2210ea0bc30"/><file name="Grid.php" hash="5d3dd60e4a530a64370c744717b2b49e"/></dir><file name="Contact.php" hash="ecf231c9d8eb789a4f0863f92d323c38"/><dir name="Customer"><dir name="Tab"><file name="Stats.php" hash="b10d350b265e14c788785b7538719f92"/></dir><file name="Tab.php" hash="507172f634c4db4350fb0288464a348a"/></dir><dir name="Dashboard"><file name="Switcher.php" hash="dac118060238aef3b2a4f60d11c0a3eb"/><dir name="Tabs"><dir name="Analysis"><file name="Abandonedcarts.php" hash="425a8936f80001f405cb13d18bf3741e"/><file name="Customer.php" hash="231b3c4d0e9877b84398b0354e5cbd03"/><file name="Rfm.php" hash="ef72ef59162d2c553090af6db3da1a87"/><file name="Sales.php" hash="77efe9da2c49f7639a37eb77868bdce0"/><file name="Subscriber.php" hash="9596bc770c09362e2612b53bcf4e4c2b"/></dir><file name="Analysis.php" hash="2849c6482644b7cdfa4cbb6db6b71df4"/><dir name="General"><file name="Data.php" hash="498868562604f48522acd599561cd436"/></dir><file name="General.php" hash="c46f8796bda3da6ea8117fccfe36a817"/><file name="Logs.php" hash="1fc8ae9c5e8370718f70075afa8e3d81"/><file name="Status.php" hash="83b5897478e515ebe989221d1040b401"/></dir><file name="Tabs.php" hash="8da89ad9d407a489b04ae47924e0b30f"/></dir><file name="Dashboard.php" hash="49c26d63147138d42aceb8538273402d"/><dir name="Importer"><file name="Grid.php" hash="8ef94d26ef4f323891f13e80afcdc150"/></dir><file name="Importer.php" hash="833d5c2a48f40c9fa27aed4bbd74bd2c"/><dir name="Order"><file name="Grid.php" hash="96e62a99c8295f442377124d37a114f2"/></dir><file name="Order.php" hash="dc6b0cd9c9ac9d8c291f72dbbd4c1a15"/><dir name="Quote"><file name="Grid.php" hash="241108bfb525bbbad0c543fef7673546"/></dir><file name="Quote.php" hash="edcacdf20da2f046ab4654dceef2399f"/><dir name="Review"><file name="Grid.php" hash="85919ad9bfc19eec32e673a699f850c5"/></dir><file name="Review.php" hash="822d452ee01499b4b493e19e6d810afd"/><dir name="Rules"><dir name="Edit"><file name="Form.php" hash="13f8b943873d30609ca3a2af6c72f502"/><dir name="Tab"><file name="Conditions.php" hash="1a11c398065666e0b77e0bf30827c81e"/><file name="Main.php" hash="aaf575a2db857eaac0f9e5006064fc3d"/></dir><file name="Tabs.php" hash="99c7258e593bff52b3976c359ad4235a"/></dir><file name="Edit.php" hash="bf987a05ecfc0c7540c6f86275582733"/><file name="Grid.php" hash="6a9077456ab1b8b72ed26406af336437"/></dir><file name="Rules.php" hash="4dc3b7ac89293d996f3e2a8fd3d12eb9"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="View.php" hash="ab9cfcc946e03f8b8fdf33d606222427"/></dir></dir></dir><dir name="System"><dir name="Advanced"><file name="Deletecontactids.php" hash="293320187b8ec5514ff69e027a808321"/><file name="Notification.php" hash="0ea9608a09ae2dad6e4c78738c583c2d"/><file name="Reimportcatalog.php" hash="a497ac63a609440dbd723bc3a2a2819f"/><file name="Reimportorders.php" hash="d29f38c149d2fbfb6b8589491b050247"/><file name="Reimportquotes.php" hash="6089df53be37afe6c4f9f10147730bc7"/><file name="Reimportreviews.php" hash="2c14cd482a448be01c8ceb3d0a9c7dd5"/><file name="Reimportsubscribers.php" hash="43b98ca37accc978ba8e9bd087b9a2c7"/><file name="Reimportwishlists.php" hash="f6bce4f06bc91f69242bd2f59220285d"/><file name="Reset.php" hash="41053dc403c95328402c0e3886307859"/><file name="Resetcustomersimport.php" hash="21bab61f962ed4a3a3c14656781c4e3b"/><file name="Runcatalogsync.php" hash="ecaa5a7b8ebc78a5f84f0870a90a0cd9"/><file name="Runcontactsync.php" hash="747b338c4fe3d3603ce60a68b7e1d5c4"/><file name="Runordersync.php" hash="58d7672919b3387d73472e6a10a850af"/><file name="Runquotesync.php" hash="c4bbc5616a080b5dbaad02717225f507"/><file name="Runreviewsync.php" hash="dafef47cb94f595af038698f1f233421"/><file name="Runsubscribersync.php" hash="090707901889d4bae741fe59747cfbff"/><file name="Runwishlistsync.php" hash="8453adae849a6ad9aaecb1f27dc46b72"/><file name="Setupdatafields.php" hash="48373eb08bb90bf4417c830723a4df11"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Ajaxvalidate.php" hash="2647705ecfcd6c1cd39489febd38b490"/><dir name="Automation"><file name="Connect.php" hash="cbe5ebdaa07cdef1086b681740cfff0f"/></dir><dir name="Config"><file name="Addressbook.php" hash="ac68b4c742413e5cdcce9c5c78e836a9"/><file name="Colorpicker.php" hash="a22c6d50728e2edaf43399093b1f4a61"/><file name="Datafield.php" hash="5b30377c5423fcccd424c4ca0ad3224f"/><file name="Enterprisevalidator.php" hash="92b60f1f8ca067887dc17afac7be6f24"/><file name="Resetcontacts.php" hash="22ef003f51db85bed2ebb85c5834b352"/><file name="Resetguests.php" hash="002ced7daec912bdad0890b26afcc4a0"/><file name="Resetsubscribers.php" hash="d5be1a595576ea63883c0249be835c7f"/><file name="Validator.php" hash="995386364c7434ad50bb87477c46f6eb"/><file name="Waitingfield.php" hash="7ffe44f6ae4b879336344882ba7e020e"/><file name="Wrapper.php" hash="2813c1d11255f10bc1ff804650a634b7"/></dir><dir name="Dynamic"><file name="Addressbookbutton.php" hash="744ca8346bf67fb7c7b96f92ad67e993"/><dir name="Basket"><file name="Crosssell.php" hash="aa00e37f15d822bf8448fbe79d70d1d5"/><file name="Related.php" hash="a1b0f467eee4513be21fdc58bdf6e59e"/><file name="Upsell.php" hash="dc7a0dbea77d7c88c9fbb660131d1773"/></dir><file name="Bestsellers.php" hash="47d8b2f89290c034c1c74ae0dad5463a"/><file name="Couponinfo.php" hash="646acc6eb041db4041c1df04e2e2fe26"/><file name="Creditmemonew.php" hash="c36bcff6b33f441b11cc5a45a5abe60d"/><file name="Crosssell.php" hash="e1085bb71156dcb1bb012044c5d4a076"/><file name="Datafieldbutton.php" hash="369eec55df4d51ce367abb9c81402976"/><file name="Fallbackchooser.php" hash="28601a2fb0407ece1269a9e3d95757de"/><file name="Fallbackcontainer.php" hash="e3044fc492790758b646a9a656ea1f79"/><dir name="Feefo"><file name="Reviews.php" hash="8a32c6e10d93621fe63c6307c5da17da"/><file name="Score.php" hash="a5a2b4a16e1645107c9dd360dbf03a6b"/></dir><file name="Gridlist.php" hash="9329c6aa0ab3118b8f03af66761f038d"/><file name="Lostbasket.php" hash="506dd83329b4b342af7239a419925a93"/><file name="Manualchooser.php" hash="d9e2e198bb53fdf4a329915db7d07281"/><file name="Manualcontainer.php" hash="689696990974ce7cd1db3df3b73bb864"/><file name="Mostviewed.php" hash="cd49997a51f34aa36470dae896336fee"/><file name="Nosto.php" hash="ec90847ea7170baf8bc197057a13dcac"/><file name="Productpush.php" hash="2623fd4a941ff0e06504dc87b877bb50"/><file name="Recentlyviewed.php" hash="b73e60e76daaca15891e3cbc3700182c"/><file name="Related.php" hash="8b8022dac18181a3ab11837be34beced"/><file name="Review.php" hash="02a962eaf8231981f3d999be9a904c77"/><file name="Upsell.php" hash="898fe5ffc06063450034a8980f54db33"/><dir name="Wishlist"><file name="Crosssell.php" hash="c5c191438715b4f8ad36c62b705cfbb5"/><file name="Related.php" hash="d94412911bb7b85ce73718adc244d6e8"/><file name="Upsell.php" hash="d79aed858a2f4c2a29299fe8868d7ef7"/></dir><file name="Wishlist.php" hash="46c433fda7ec07c82025d88014d93471"/></dir><file name="Emailapivalidate.php" hash="d2b05128440217064792b82e0911e1e6"/><file name="Installation.php" hash="03707c42dcca01e1c156b48a6246a74c"/><dir name="Sms"><file name="Smsmessagefour.php" hash="d5f61111d9c58ee99dc10cb53afea060"/><file name="Smsmessageone.php" hash="00b65d2fcd16c11b93db8fff1ffda069"/><file name="Smsmessagethree.php" hash="eec8120e729a8dd0d248e184564eefcd"/><file name="Smsmessagetwo.php" hash="5f9fa9aca352c389a2cd75ef4366baed"/></dir><dir name="Url"><file name="Creditmemoupdate.php" hash="07113ed35f709e2e65c4c61521e560a8"/><file name="Creditmemoupdateguest.php" hash="034e033269cf142f930b6bff1c36d10a"/><file name="Customerconfirmation.php" hash="260a57d13b20cda7229eb33c9a73559c"/><file name="Customerconfirmed.php" hash="1743ddf8f308eb375f44ac32da3c3c91"/><file name="Customernew.php" hash="2878ef6c84303614ac3426838f8b65d5"/><file name="Invoiceupdate.php" hash="d4eb69e2e0f5e3b7e9ea1da5d3adb578"/><file name="Invoiceupdateguest.php" hash="1ebd3c14e380043fa16b7e36d821d15c"/><file name="Newcreditmemo.php" hash="20b55e9ce5371a371ff0c94bd0fda178"/><file name="Newcreditmemoguest.php" hash="5bd16181c61c1bfb98e6eea3e1c7281f"/><file name="Newinvoice.php" hash="ff95c29ff62359ab2d0366098029a704"/><file name="Newinvoiceguest.php" hash="d05a14bb52facf8635c89642165e39ec"/><file name="Neworder.php" hash="f67882d758909fda7364fa04cb51e2f0"/><file name="Neworderguest.php" hash="ac3b96283e7e5e3ce68e35bf84f9043d"/><file name="Newshipment.php" hash="f059c430fb155c8f9da10b6dd4c67e01"/><file name="Newshipmentguest.php" hash="f73d439fb93eb7f20289e021b10b69a8"/><file name="Orderupdate.php" hash="1c27f18bf9ff58c1f0668539b7ca6896"/><file name="Orderupdateguest.php" hash="d4a2479efa67e900fbe69f6954707076"/><file name="Shipmentupdate.php" hash="f6f2fe91a159b8bf9c70c3a8773a058c"/><file name="Shipmentupdateguest.php" hash="f0ce96ef2e562cae6d155e4d38f1dcac"/></dir></dir><dir name="Widget"><dir name="Chooser"><file name="Product.php" hash="b2f77407f30411d5447fbd1ffac3e415"/></dir></dir><dir name="Wishlist"><file name="Grid.php" hash="fc60afe27facac4a3fb4677ba1aa2fbe"/></dir><file name="Wishlist.php" hash="74f5fb49b057af35ee320f442c664a6b"/></dir><file name="Basket.php" hash="435ae9c1945579ac9da0b4b9025f5251"/><file name="Coupon.php" hash="fe3affe1a8d9a7a885d81f19f4adb51e"/><dir name="Customer"><dir name="Account"><file name="Books.php" hash="6ab8f5f63d96188f9823e580c11dc7bd"/></dir></dir><file name="Edc.php" hash="d44dcf1413fca50a4d6cad12bcfc7a71"/><file name="Feefo.php" hash="b22ae2a4a60920a089ddccb45582482c"/><dir name="Order"><file name="Creditmemo.php" hash="d555e9f31e6fe0203170ba2620407119"/><file name="Invoice.php" hash="f47b6cb4c61849b6b84a4e6e84038cdc"/><file name="Shipping.php" hash="a3a1c9aa093b9dfa3f94eaea1dba9a81"/></dir><file name="Order.php" hash="263f75b72c1c0130f49cf73fee5dc7ef"/><file name="Products.php" hash="d38365bc368c1d6e8e867de39c4a1495"/><dir name="Recommended"><file name="Products.php" hash="b2c71bccc08a722297695d462d0c8e67"/><file name="Wishlistproducts.php" hash="966cde9e39e4a429b07bf592005eb82b"/></dir><dir name="System"><dir name="Email"><dir name="Template"><file name="Edit.php" hash="74dc9f59ad9ae1794aec084aac4fa811"/></dir></dir></dir><file name="Wishlist.php" hash="02ac8be0a7325f369d75c53c3b5f5952"/></dir><dir name="Helper"><file name="Config.php" hash="cad7e0156e164947b5a9932316b60723"/><file name="Dashboard.php" hash="fd6aaa5877cd92ece44db35a66353765"/><file name="Data.php" hash="7aab568e93a24489294304156127f362"/><file name="File.php" hash="152383a2910ded13aae097c386cf4947"/><file name="Recommended.php" hash="d77533b7b110828e07f7a9d9a80606fe"/><file name="Review.php" hash="df5fbc8a07818618886ffbadc64782d1"/><file name="Transactional.php" hash="a399ced08b031a9d5f4cdab3d28db6a6"/></dir><dir name="Model"><dir name="Abstract"><file name="Rest.php" hash="2ae2e2ac0851da8c7c38a4edc136cef5"/></dir><dir name="Adminhtml"><dir name="Dashboard"><file name="Content.php" hash="a415e7d3fad5d27ce27f6172a50d4997"/><dir name="Tabs"><dir name="Analysis"><file name="Abandoned.php" hash="915c2e848bdb8c2629a90d6d4326b8e8"/><file name="Customer.php" hash="f56d20e6620589c31b8468d8f06d975e"/><file name="Orders.php" hash="9ac9df6980ecedcdcd2567656ebc3a4c"/><file name="Rfm.php" hash="1bd137928d701485c995b6a236ea1ef6"/><file name="Subscriber.php" hash="1b44da59332b7f233499abe3408ed70a"/></dir></dir></dir><file name="Observer.php" hash="d0de99361d7afd45d86788700eedb216"/><dir name="Source"><file name="Addressbooks.php" hash="af92437b4ed2a7fc6fede455420f11c0"/><file name="Addressbookspref.php" hash="e5ff9e837bad955fdcd69265783c9cb0"/><dir name="Advanced"><file name="Abandonedlimit.php" hash="cd280151523091f85af89b0e22ff0abf"/><file name="Attributes.php" hash="9d08d5ab758447987c7ab9ba6d5c45b2"/><file name="Cronexpressionsone.php" hash="3877dd7041189aedf2c972b4361d2134"/><file name="Cronexpressionstwo.php" hash="0a97c58dff29e17a8448ff0c17e393d7"/><file name="Frequency.php" hash="28292fba0dd62bb6730ccd7bfa2b8e70"/><file name="Quoteattributes.php" hash="a1ddcbd001b9cd5b40157ba3c9435bef"/><file name="Transdata.php" hash="5c670a26d641c4b7e73bbaff48af3dd6"/></dir><file name="Attributes.php" hash="4b079aac1a25bec3c7c7e4152a66daa8"/><dir name="Automation"><file name="Programme.php" hash="a7143fecceaa7b7f6905634510112ef1"/></dir><file name="Campaigns.php" hash="35014267c18ab36cd6d849318914185e"/><dir name="Contact"><file name="Imported.php" hash="f44a906cb28c81c709c649b6ed8a0ccd"/><file name="Modified.php" hash="30e2f9e3d55ecd65a3cd0be1136db38d"/></dir><dir name="Customer"><dir name="Attributes"><file name="Select.php" hash="a77542918db6d3ba1c0298b475e8e9ed"/></dir></dir><file name="Datafields.php" hash="0a12d3c9c63476ea6981e416dfec6155"/><dir name="Datamapping"><file name="Datafieldaccess.php" hash="eba7f16c5e03ebc4bca00b1dcfc5dbc7"/><file name="Datafieldtype.php" hash="1b9ac7be92d60718981d4b17be4dbeda"/></dir><dir name="Dynamic"><file name="Displaytype.php" hash="3c84fc4962406d0e4b974e1c0e40f6e4"/><file name="Gridview.php" hash="5f033792839adf57fb37b277dc662237"/></dir><file name="Fontpicker.php" hash="a943850c33229bc471ad9e94023347e3"/><file name="Fontsize.php" hash="7eb842a6f895b3f8a279c53fa961f173"/><dir name="Importer"><file name="Mode.php" hash="6a4649e9311b6aaf2997a434438dfb29"/><file name="Status.php" hash="97dfab5de2ada065f335ede94301c27c"/></dir><dir name="Lostbaskets"><file name="Interval.php" hash="e3ed7930ab2b4526c0d6d2b76784331c"/><file name="Intervalminute.php" hash="7777a4757d8fa8deebfa94cca9ac4053"/></dir><file name="Orderstatus.php" hash="b02456d91d6e27ae9f330c2b16b0fb8f"/><file name="Publicdatafields.php" hash="4a162948a4ee37b8e2d38490aa4d41c1"/><dir name="Reviews"><file name="Delay.php" hash="393704cfa870165ef3b3ba59e454953b"/></dir><dir name="Rules"><file name="Condition.php" hash="377f65c9b5ee85e44b2fb4ac72021770"/><file name="Type.php" hash="2ccd61f1f5a098e876b79ac24529d41b"/><file name="Value.php" hash="94d4df5777c098e5f04f5be125772ce5"/></dir><file name="Styling.php" hash="b8578fc89114359933b7bdc64f49b4d3"/><dir name="Sweettooth"><file name="Yesno.php" hash="8345e519b0e6b8eb75bca72a16e66014"/></dir><dir name="Sync"><dir name="Catalog"><file name="Attributes.php" hash="323d3400bb91b89ff880421823f54052"/><file name="Type.php" hash="265862a32c3d11509bf4f9ec3fac65fb"/><file name="Values.php" hash="30eedb9ac9f72edb94d9abef91b9fcfb"/><file name="Visibility.php" hash="84cc10186bfc1d00dd967027f6c2a413"/></dir><file name="Yesno.php" hash="4cde23e3613eaaf04a65454540620e6b"/></dir><dir name="Transactional"><file name="Mode.php" hash="02f45553e3bc342ddd3f205993a5384e"/><file name="Port.php" hash="3dc1b86a9034e2098f98921109d7187f"/><file name="Ssl.php" hash="256550ab7cc09ce240f3dd4a4e2d4324"/></dir></dir></dir><dir name="Api2"><dir name="Subscriber"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="129b412cb9d43ed2368eb1a86e11609c"/></dir></dir></dir></dir><dir name="Apiconnector"><file name="Client.php" hash="8e3c2949fa7be3c34a86f5dc0b70f055"/><file name="Contact.php" hash="8653894b4ea2fc66d88ff6b64df67e52"/><file name="Customer.php" hash="7066d90001ecd63cc17b8bdef585f6d5"/><file name="Test.php" hash="c1c0274bb9b707af55ebdd7a4263bf6e"/></dir><file name="Automation.php" hash="7f3c01f71b192f56db8a1b755ccdbd86"/><file name="Campaign.php" hash="eb793621c5c53eb45ea95d22c7be8c94"/><file name="Catalog.php" hash="6fb3bd93975d29c15b17cb5ce388f3eb"/><dir name="Connector"><file name="Account.php" hash="6e6bf814a8ce5a14a3496ecc4c305190"/><file name="Campaign.php" hash="e221755bbbe55bcbd2bff9b260d645b1"/><file name="Datafield.php" hash="616fa71b66833c5bb6abd5c3e24876f9"/><file name="Order.php" hash="66975a73ac3ec452c6714ada4ac5aa4c"/><file name="Product.php" hash="89faebabd39224fe768714c2f426a3e5"/><file name="Quote.php" hash="b86a2638b9e6ae6c3363d2d77125c0f2"/></dir><file name="Contact.php" hash="16f950b64036b529ecea0cb487146f82"/><dir name="Controller"><file name="Observer.php" hash="b01537009a0061c4266fbf2f8c52251d"/></dir><file name="Cron.php" hash="d6f3e99013ac3b3dc15db633ff00a19a"/><dir name="Customer"><file name="Guest.php" hash="bd1e1b8f82f25d808700c33f726cb19a"/><file name="Observer.php" hash="b9376cd4ba6ce646300aa31e30b514ec"/><dir name="Review"><file name="Rating.php" hash="a91b68302e270aa08ea3762f63225a80"/></dir><file name="Review.php" hash="f17180683194eca1e49782c36e310200"/><dir name="Wishlist"><file name="Item.php" hash="c37c6d9700771e57a039ac7f5ebe68b9"/></dir><file name="Wishlist.php" hash="598eddf031e56fa752bf64fe32773da5"/></dir><file name="Customer.php" hash="e1dd3b479c9bbf125cf1ec36206d1c7f"/><dir name="Email"><file name="Template.php" hash="18e12b6d6f7e275d8444fe37411f92cd"/></dir><file name="Email.php" hash="6cf3844e7f4c75c534a50486631ec10e"/><file name="Feed.php" hash="09151ffa241990ed28f4acb99c7d72ca"/><file name="Importer.php" hash="ab77cd2cde8ef227bf2b4c5cb87831a0"/><dir name="Newsletter"><file name="Observer.php" hash="b7091557caad19c22d247baa5e3751a5"/><file name="Sub.php" hash="a8a3fd672f62288be68001b3dc0bd58d"/><file name="Subscriber.php" hash="53c2ba474048763384dbcd0a6d590488"/></dir><file name="Order.php" hash="721ba8aa79daae66d2ec421143435fbc"/><file name="Quote.php" hash="1ca4b5c44aa678d0e2e29b09d2939c1c"/><dir name="Resource"><dir name="Automation"><file name="Collection.php" hash="b0e7826c3c153cac3d9bcaed76d1d75e"/></dir><file name="Automation.php" hash="902f696eb797323101f1a3b4c9abf84d"/><dir name="Campaign"><file name="Collection.php" hash="736cc4414d45d0dca975101bc75919c6"/></dir><file name="Campaign.php" hash="b2d6c5e4396794efd97562f2f23f2f40"/><dir name="Catalog"><file name="Collection.php" hash="ef157bd81d50a49e94058b986aac5b2e"/></dir><file name="Catalog.php" hash="e447f04904e9b964359497c79a6ea1eb"/><dir name="Contact"><file name="Collection.php" hash="a6da2689f90a668b08a549a200f9c6a9"/></dir><file name="Contact.php" hash="dcfef90f2f9ac7d3d9d3c17dec5c7591"/><dir name="Importer"><file name="Collection.php" hash="605d0e7091f309e6a5f6e2d15513c8bf"/></dir><file name="Importer.php" hash="565087fd0df9fa9c2f84cc5ac5e20e17"/><dir name="Order"><file name="Collection.php" hash="87cf24cbbd5d6c0141b7c401238b5c50"/></dir><file name="Order.php" hash="11fcf2784fb5f80594e6672d867c3d5a"/><dir name="Quote"><file name="Collection.php" hash="4d9ed530f86edb24c2d8e89db3c2b6b1"/></dir><file name="Quote.php" hash="598747a52e2a2d41dd7582bba69fef4a"/><dir name="Review"><file name="Collection.php" hash="c7e03d9bd662df5dd2a1a31e246b97e4"/></dir><file name="Review.php" hash="761eec4269e616ec356634d9346020b6"/><dir name="Rules"><file name="Collection.php" hash="b0da90dc943d5c6a8dd47d3fe245677c"/></dir><file name="Rules.php" hash="4b688c552b91487c22482f059cb49bc9"/><file name="Segment.php" hash="32b94ab790a3508658a663d2e2361065"/><file name="Setup.php" hash="442dda9eabbd1fb6e88e7d2baaa2a28c"/><dir name="Wishlist"><file name="Collection.php" hash="6d75820d8b8d5ed1af2fc77522205a8d"/></dir><file name="Wishlist.php" hash="6047d392299414bbf17c9aaf83a159ff"/></dir><file name="Review.php" hash="e9ca80670d3a7befea508d88c8970c32"/><file name="Rules.php" hash="98b8f5541915251e59b74c60443772ac"/><dir name="Sales"><file name="Observer.php" hash="5147fdc3908b9e9d4b3ef5183f7f5288"/><file name="Order.php" hash="c3d2dae9d43a979f427c9b60ae14a0cd"/><file name="Quote.php" hash="9dcff90aa74c8e04cbc2cd9cf55ede67"/></dir><dir name="Sms"><file name="Campaign.php" hash="010e082c861a29930b78dced7bd0b22b"/></dir><dir name="Sweettooth"><file name="Observer.php" hash="36ce70503cd8abbafd8b5340a06d2072"/></dir><file name="Wishlist.php" hash="7e6bdf367eb399024afb91a9575e296f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConnectorController.php" hash="799e6b5bedd00ae6e3258aa4223cf930"/><file name="CustomerController.php" hash="c28f84e3c4d7603382e33a931f3c831a"/><dir name="Email"><file name="AutomationController.php" hash="028db05f18ee05a7d7869f22f5b6c41c"/><file name="CampaignController.php" hash="b74d05cbce2391ef3fb3d148d5822d20"/><file name="CatalogController.php" hash="e43c7a33bec07c1cedbd73a0aa9c54af"/><file name="ContactController.php" hash="4594622b77cabb08b75bb632a178964f"/><file name="DashboardController.php" hash="13572a0ae47a09ed1cd4af0b870e8320"/><file name="ImporterController.php" hash="21540bb7f839cafcc6f70b7bee5b2774"/><file name="OrderController.php" hash="64b719cf2a80847b82a7849be7ffe68c"/><file name="QuoteController.php" hash="4167890a19fa6716e64a79afca55e2e3"/><file name="ReviewController.php" hash="13d74d52e160555e0c029a360d562a51"/><file name="RulesController.php" hash="6e33826563242604e83fe25344f7bf3e"/><file name="StudioController.php" hash="c24e13f8fb26805937b71d8d3eebcddc"/><file name="WishlistController.php" hash="b4d3a20f38a0a45886cc7dfa963894dc"/></dir><file name="RulesController.php" hash="98e5a0fc5983baf46eee5eb1bd185333"/><dir name="System"><dir name="Email"><file name="TemplateController.php" hash="98d9c1f5aae8f94de0102ccdcdb2fe7c"/></dir></dir><dir name="Widget"><file name="ChooserController.php" hash="7607cec3305ab9d4381c89fa12703a64"/></dir></dir><file name="AjaxController.php" hash="cd16d360815bfcf72b77a78d9dc938f0"/><dir name="Customer"><file name="AccountController.php" hash="4b78330a34d2985fa2526c935073a65f"/><file name="NewsletterController.php" hash="f7425d9524504163d6e91ae3fa640c88"/></dir><file name="DynamicContentController.php" hash="dcfc5df598412e5f630608cf08768c72"/><file name="EmailController.php" hash="d9dd2de4b462112118e5e32b02978e1c"/><file name="FeefoController.php" hash="f3613defc5132cdabc5536483ae75bb5"/><file name="ProductsController.php" hash="d54c85bc071a0fcda6a8e5969e3c5f63"/><file name="QuoteproductsController.php" hash="3867af36e829e4cf22d81a4d96757d6a"/><file name="ReportController.php" hash="c8c670deae7bec4e17bb3251015dfffb"/><file name="ResponseController.php" hash="fa37fedd598a8b353ee13d8e962759bd"/><file name="WishlistController.php" hash="a8d20ad1304bf13a5de8847e726d9ee5"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8f7bee00ad2baf155ed0e7cbe2dd1e25"/><file name="api2.xml" hash="e6be0fdc4206cb242f22b2335476b497"/><file name="config.xml" hash="68706dc33a3637091848be504246edd0"/><file name="files.yaml" hash="bdf56ddeb595f73caabe120894d0b286"/><file name="system.xml" hash="f335383d2689bb449c37b63fcf6984a3"/></dir><dir name="sql"><dir name="email_connector_setup"><file name="mysql4-install-0.1.0.php" hash="26042b2a6d9cd6241d52f826188483f4"/><file name="mysql4-install-3.0.0.php" hash="0454445ec8e47bf09cc5a94c5bffc03a"/><file name="mysql4-install-4.0.0.php" hash="a0234b5c4bc00d20564c57e8338784d7"/><file name="mysql4-install-5.0.0.php" hash="a3188b1ded81bbd5b59b63f6e38de4de"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="7fae25a8ae47fe0ba692076ac04237a4"/><file name="mysql4-upgrade-1.1.2-1.5.0.php" hash="34ac896f6e681c56d8d2dd6bf411215e"/><file name="mysql4-upgrade-1.5.0-2.0.0.php" hash="75020a02255ea63e9bc4599d85ab4e2f"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="2f71a10d19eddd97c9eba9af840e4f09"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="6b7af944ebc76328d16223cdb245c568"/><file name="mysql4-upgrade-2.0.3-2.0.4.php" hash="d71788287371f0f5416f81e03245d281"/><file name="mysql4-upgrade-2.0.4-2.0.5.php" hash="f2080852fd1e0512da9bf1074767a9b3"/><file name="mysql4-upgrade-2.0.5-2.0.6.php" hash="438ea31fe7b8ed88160ae8c231ec9ccc"/><file name="mysql4-upgrade-3.0.1-3.0.2.php" hash="7c53b291487987ae73929acea576bc51"/><file name="mysql4-upgrade-3.0.3-3.0.4.php" hash="7adaa83b6da0000ca7d1491c3af76682"/><file name="mysql4-upgrade-3.0.4-3.0.5.php" hash="c08939ca13713f335bacc593d0e780d3"/><file name="mysql4-upgrade-3.1.2-3.1.3.php" hash="f5ba2c14acd01144297fab7070558ddd"/><file name="mysql4-upgrade-3.2.1-3.3.0.php" hash="1b6540a260f25ae849f433cb60f0c39d"/><file name="mysql4-upgrade-3.3.0-3.3.1.php" hash="c7c63ebee282543d71dd4f8699d27c86"/><file name="mysql4-upgrade-3.3.2-3.3.3.php" hash="1707de69aa9294821195cfafa1a1798e"/><file name="mysql4-upgrade-3.4.0-4.0.0.php" hash="9ca61b554058b976031c4dfc2baa5a48"/><file name="mysql4-upgrade-4.0.0-4.1.0.php" hash="987700db6020c9bc607117ef3d46f771"/><file name="mysql4-upgrade-4.1.3-5.0.0.php" hash="c762c1263e3595162100ff48db52597b"/><file name="mysql4-upgrade-5.0.0-5.0.1.php" hash="a8603a251c822c67d0afde4b64d82da6"/><file name="mysql4-upgrade-5.0.4-5.1.0.php" hash="4640e2ea0587c2b3ead18cfa29b5fa04"/></dir></dir></dir><dir name="Mailcheck"><dir name="Helper"><file name="Data.php" hash="589b8909f08143ad44234f05911488df"/></dir><dir name="etc"><file name="config.xml" hash="841542418fa8e50cb53a3bde50ce38f4"/><file name="jstranslator.xml" hash="d0f175944d2c14badd2cade8d4a40585"/><file name="system.xml" hash="7d64665436e5eb104a1316c32338ec72"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="connector.xml" hash="4a5ad4efa2ea66fe9deccb81196582a1"/><file name="mailcheck.xml" hash="ff97a71e8124f8e6e55d951124addace"/></dir><dir name="template"><dir name="connector"><file name="additional-newsletter-pref.phtml" hash="5a5eb99d46d23dd618106f32688daabd"/><file name="basket.phtml" hash="cad15b4b20ad3489a6342d62dfdf9e42"/><file name="coupon.phtml" hash="07888698e1fb67778e4867a9b2317593"/><dir><dir name="creditmemo"><file name="items.phtml" hash="e911de4e7f2717698e4041c7046ed5a5"/><file name="new.phtml" hash="b6cd1d03e035c487f4b7f42e42782dd9"/><file name="newguest.phtml" hash="18b75cf7b4cee9b6853a98285e2195c1"/><file name="update.phtml" hash="fca8e2a9664e083a1395db8e6deddb02"/><file name="updateguest.phtml" hash="bbedb48ecdfc3983feba709ab9cbea4d"/></dir><dir name="customer"><file name="stats.phtml" hash="b26f6331faa6b3e662b14e5bde8c66d8"/></dir><dir name="feefo"><file name="reviews.phtml" hash="cd1dc08242588b1427534326eb7525ab"/><file name="score.phtml" hash="74d48f68f5d0ec044a8c067fa7f3c631"/></dir><dir name="invoice"><file name="new.phtml" hash="5071b6ffa75d7400bb5e4f3d4304f04a"/><file name="newguest.phtml" hash="254828a0c9400232ba62b2518b4bb246"/><file name="update.phtml" hash="3832a322ca53f4676c5cffeb47f2064b"/><file name="updateguest.phtml" hash="7fc8cfdd31af6c65a00e45d301d6bf69"/></dir><dir name="order"><file name="items.phtml" hash="9d149cbb8fe1e4c2736c6d77323abfc0"/><file name="new.phtml" hash="7d0cae172eb123d8ed491f6e8cc7e3d2"/><file name="newguest.phtml" hash="a1cca92e394fdb476030ee214ce9bbe1"/><file name="update.phtml" hash="471adf8334316e1e3270af403c1da796"/><file name="updateguest.phtml" hash="66ce43e3a2f70a70cd931253d0af4b95"/></dir><dir name="product"><file name="list.phtml" hash="e70abd933d0ede5ce2f0816d73a6540c"/><file name="nosto.phtml" hash="4c16e297faf2ad1a55a9e0a5309dd2aa"/><file name="price.phtml" hash="4d0674f2d03160617536338744330ff4"/></dir><dir name="shipping"><file name="new.phtml" hash="f0f419c9cc62ff12c94ec3426e3ae566"/><file name="newguest.phtml" hash="6e35f29c9643612a446b289e75831edd"/><file name="update.phtml" hash="b49ceefccea37e8cae2f4bc13dc0d6d6"/><file name="updateguest.phtml" hash="ddb77ce7d58b3d29ecd779078ecbd59d"/></dir></dir><file name="email_capture.phtml" hash="879403b63407bed8b2c17ff5ee7592e2"/><file name="email_capture_init.phtml" hash="6cace9896c340d3bc05e54b48e376888"/><file name="review.phtml" hash="5ea70647870d9422847f6adbbac2e7b0"/><file name="roi_code.phtml" hash="108934652f443d0328a60893cad70742"/><file name="tracking_code.phtml" hash="1bbccb72db1a769ef8e14e0df2c9febd"/><file name="wishlist.phtml" hash="50fba04e823d37802f2f896894ad7ab0"/></dir><dir name="page"><file name="blank.phtml" hash="7a10ef1534ebe3b449cf051799e5a066"/></dir><dir name="mailcheck"><file name="scripts.phtml" hash="adbf073bb2cb944c44b11d79bcca1eb5"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="connector"><file name="email.xml" hash="907e33ef044db87b0cbdadd480c5c43a"/></dir></dir><dir name="template"><dir name="connector"><file name="appcues.phtml" hash="11bb1143b5334bbcbf182d17a118f281"/><file name="beacon.phtml" hash="18d507b6041ac64b167d27a606fdcb83"/><dir><dir name="customer"><file name="stats.phtml" hash="39212effdbf09ea987f06a81b7f9d9bc"/></dir><dir name="dashboard"><file name="accountbar.phtml" hash="6041f857396a9ba87d737d6fdfcdc775"/><file name="content.phtml" hash="9e5c843b6323ea80c410662fb4f39793"/><file name="logs.phtml" hash="8d1f415d0e7f90e5aa186a7a2dbafd63"/><file name="status.phtml" hash="2b6576584376f3573c3b9a899d8afbb1"/><dir name="tabs"><dir name="analysis"><file name="index.phtml" hash="a9ef11d470dae139ad5243fc1bc91431"/><file name="rfm.phtml" hash="8129887ef234cd4571aa28c5fd124d3b"/></dir><file name="data.phtml" hash="6be723c64762c23b0eebfc92021afee2"/><dir name="general"><file name="index.phtml" hash="68fa10c2aeef745d80b60317c9461a94"/></dir></dir><file name="tabs.phtml" hash="f6de685d30e2d67ae411ce010bc713a3"/></dir><dir name="system"><dir name="config"><file name="createdatafield.phtml" hash="a1a571fa0957d7fadf346d1b89c5a0b0"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="59cf12fc34d44601486fc056c5c3339a"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Dotdigitalgroup_Email.xml" hash="8745c0b2eae08783b6203a613acdbcb8"/><file name="Dotdigitalgroup_Mailcheck.xml" hash="247272e2cc981e8b91af95962b0f0470"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="connector"><file name="config.css" hash="433bf71f40517a667ee9aba495f1746c"/><file name="dashboard.css" hash="08e2c6ae799757fd68a85781311f2b97"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="mailcheck"><file name="init.js" hash="585e518d5d2dd2d0f50243f51a3c881b"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Dotdigitalgroup_Email.csv" hash="67022e746e28d74b86509b70f336db4f"/></dir></target><target name="mageweb"><dir name="lib"><dir name="Raygun4php"><dir><dir name="Exception"><file name="UnsatisfiedDependencyException.php" hash="32b7fff3854ba20107b89a100550dc41"/><file name="UnsupportedOperationException.php" hash="951d8a9fc2bdfae0acc432ea6dabffa4"/></dir></dir><file name="README.md" hash="0aed7c6a52f358016b2c1b8f5e4e35ed"/><file name="Raygun4PhpException.php" hash="f6d4ef9f38a74578b115fbdf6e2fd3c5"/><file name="RaygunClient.php" hash="f9511057d3280a3a6d02b9b2a1517fd1"/><file name="RaygunClientMessage.php" hash="df9bd918ff13b50146b252208a5ce737"/><file name="RaygunEnvironmentMessage.php" hash="a7dff1914fcb7f6a61577b758edba47e"/><file name="RaygunExceptionMessage.php" hash="fcf7e3cbf9fbafb3ff4a6d56135a190d"/><file name="RaygunExceptionTraceLineMessage.php" hash="8aa87f7ddee8c00855737e85bbcb29cd"/><file name="RaygunIdentifier.php" hash="49461fa525594b15f3a350fd1da1c2a0"/><file name="RaygunMessage.php" hash="865eaa58577265fb52a85ee861102625"/><file name="RaygunMessageDetails.php" hash="2403453f658d7a943bd476e7fad186d7"/><file name="RaygunRequestMessage.php" hash="038703138dcd19aefbc9a7e44bd6f198"/><file name="Uuid.php" hash="9db740992b0dad17bf2047d13565b428"/><file name="cacert.crt" hash="47961e7ef15667c93cd99be01b51f00a"/></dir><dir name="connector"><dir><dir name="feefo"><file name="feedback-no-th.xsl" hash="239c40764293a65b85d9f86479ced8b6"/><file name="feedback.xsl" hash="7167570192e48fdf57baa9c2cf56986b"/></dir></dir></dir></dir><dir name="js"><dir name="connector"><dir><dir name="procolor-1.0"><dir name="img"><file name="procolor_win_bars.png" hash="a8e41fdddd2253309e0b3e5154668c24"/><file name="procolor_win_bg.gif" hash="c0558cecd0e0ffb9ca89efe00f422261"/><file name="procolor_win_bg.png" hash="4e2a34cc64888fe264fcf6249dfe40da"/><file name="procolor_win_boxes.png" hash="e971c1ca87a0cb52d32408270d00a0da"/><file name="procolor_win_close.png" hash="20a8bb9433157962ab25d86d28d088a3"/><file name="procolor_win_drop.png" hash="9ddce741de330573f082ffe83005d691"/><file name="procolor_win_palette_raw.png" hash="ea98dde528e987029af6e24dbef53922"/><file name="procolor_win_sel_circle.gif" hash="3674b62db5a6eaa4dcedb0749dde4106"/><file name="procolor_win_sel_circle.png" hash="d76195d1777e9a14ebc1a242ab712037"/><file name="procolor_win_sel_rect.gif" hash="b74a72aaf1ea21d55b8751079f283537"/><file name="procolor_win_sel_rect.png" hash="5513589e2b6dc1a980a4e65a746005d0"/><file name="procolor_win_wheel_black.png" hash="62353005bb70bbfa8ffd700112d72582"/><file name="procolor_win_wheel_rgb.jpg" hash="afdd3852c3788a58794ddf1de9557fd8"/></dir><file name="procolor.compressed.js" hash="79e463efad21212e4096d40b9e17d96c"/><file name="procolor.js" hash="93ec3cb6a0356cce4cf8e51006dfaeec"/></dir></dir><file name="selector.js" hash="5dc1900967679a41c70ed5f1755240e2"/></dir><dir name="mailcheck"><file name="magentoMailcheck.js" hash="b4eaabac0b6e8753e09ab6ea449e6519"/><file name="mailcheck.min.js" hash="25966edf6e585822063b48dd34bcee9b"/></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies><required><php><min>1.5.2</min><max>6.0.0</max></php><extension><name>curl</name><min>7.15.1</min><max>7.30.0</max></extension></required></dependencies>
34
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dotmailermagento</name>
4
+ <version>5.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
25
  + Dynamic Content Styling: Apply custom CSS to all dynamic content pages e.g. font size, colour and type.&#xD;
26
  &#xD;
27
  + Reporting: Now within the Newsletter section in Magento you can view the import status of contacts and orders, as well as the sending status of transactional and lost basket emails.</notes>
28
+ <authors><author><name>Calin Diacon</name><user>cdiacon</user><email>calin.diacon@dotmailer.com</email></author><author><name>Adeel Qamar</name><user>adeel</user><email>adeel.qamar@dotmailer.com</email></author></authors>
29
+ <date>2015-11-30</date>
30
+ <time>10:36:24</time>
31
+ <contents><target name="magecommunity"><dir name="Dotdigitalgroup"><dir name="Email"><dir name="Block"><dir name="Adminhtml"><dir name="Automation"><dir name="Edit"><file name="Form.php" hash="436877f0f8c2df572f33b25666d78769"/></dir><file name="Edit.php" hash="a9494e5817d7ae19c206f15260eb6c81"/><file name="Grid.php" hash="83a8f872ac9832179862ceb49cd3c4cc"/></dir><file name="Automation.php" hash="7e1b876bf5619cb4533fb935b67b7103"/><dir name="Campaign"><file name="Grid.php" hash="ed3b11f23f8029c7af4dd63f5dceed0e"/></dir><file name="Campaign.php" hash="1b09266adba5191df1d39330e4832d41"/><dir name="Catalog"><file name="Grid.php" hash="e5545ec424a1011117e869984e90a754"/></dir><file name="Catalog.php" hash="f9d97d5ff57987714788ef0511405d46"/><dir name="Column"><dir name="Renderer"><file name="Delete.php" hash="2741323edb5151b4211244ccf115d796"/><file name="Imported.php" hash="894d7ead94e40d20cabb082346830c35"/><file name="Reset.php" hash="f85c3f41af7e6929dc169fb231e24162"/><file name="Script.php" hash="d4f0356fc226028af5857549733a84d3"/><file name="Status.php" hash="42180e34e981f2998c35697bf049c786"/><file name="Sync.php" hash="253fb9fbfc1c450e1ae8332b466896da"/><file name="Website.php" hash="ca2c1f34b86e5ccf022fdc395cf07084"/></dir></dir><dir name="Config"><dir name="Automation"><file name="Customdatafields.php" hash="7ae2aef7d636c19dd2fcc9ba57ab4635"/></dir><file name="Customdatafields.php" hash="ee28b3fe691ade18fcc217b330d8dac6"/><dir name="Rules"><file name="Customdatafields.php" hash="c56d50e7eb3854ec67e026023d38d4d7"/></dir><file name="Select.php" hash="b92091e08d7e24032be9b8aea033b81d"/></dir><dir name="Contact"><dir name="Edit"><file name="Form.php" hash="1d0f6eba1f3a59c38ccfc01b3d5eb447"/></dir><file name="Edit.php" hash="051408ea54be21761e1ab2210ea0bc30"/><file name="Grid.php" hash="5d3dd60e4a530a64370c744717b2b49e"/></dir><file name="Contact.php" hash="ecf231c9d8eb789a4f0863f92d323c38"/><dir name="Customer"><dir name="Tab"><file name="Stats.php" hash="b10d350b265e14c788785b7538719f92"/></dir><file name="Tab.php" hash="507172f634c4db4350fb0288464a348a"/></dir><dir name="Dashboard"><file name="Switcher.php" hash="dac118060238aef3b2a4f60d11c0a3eb"/><dir name="Tabs"><dir name="Analysis"><file name="Abandonedcarts.php" hash="425a8936f80001f405cb13d18bf3741e"/><file name="Customer.php" hash="231b3c4d0e9877b84398b0354e5cbd03"/><file name="Rfm.php" hash="ef72ef59162d2c553090af6db3da1a87"/><file name="Sales.php" hash="77efe9da2c49f7639a37eb77868bdce0"/><file name="Subscriber.php" hash="9596bc770c09362e2612b53bcf4e4c2b"/></dir><file name="Analysis.php" hash="2849c6482644b7cdfa4cbb6db6b71df4"/><dir name="General"><file name="Data.php" hash="498868562604f48522acd599561cd436"/></dir><file name="General.php" hash="c46f8796bda3da6ea8117fccfe36a817"/><file name="Logs.php" hash="1fc8ae9c5e8370718f70075afa8e3d81"/><file name="Status.php" hash="83b5897478e515ebe989221d1040b401"/></dir><file name="Tabs.php" hash="8da89ad9d407a489b04ae47924e0b30f"/></dir><file name="Dashboard.php" hash="49c26d63147138d42aceb8538273402d"/><dir name="Importer"><file name="Grid.php" hash="8ef94d26ef4f323891f13e80afcdc150"/></dir><file name="Importer.php" hash="833d5c2a48f40c9fa27aed4bbd74bd2c"/><dir name="Order"><file name="Grid.php" hash="96e62a99c8295f442377124d37a114f2"/></dir><file name="Order.php" hash="dc6b0cd9c9ac9d8c291f72dbbd4c1a15"/><dir name="Quote"><file name="Grid.php" hash="241108bfb525bbbad0c543fef7673546"/></dir><file name="Quote.php" hash="edcacdf20da2f046ab4654dceef2399f"/><dir name="Review"><file name="Grid.php" hash="85919ad9bfc19eec32e673a699f850c5"/></dir><file name="Review.php" hash="822d452ee01499b4b493e19e6d810afd"/><dir name="Rules"><dir name="Edit"><file name="Form.php" hash="13f8b943873d30609ca3a2af6c72f502"/><dir name="Tab"><file name="Conditions.php" hash="1a11c398065666e0b77e0bf30827c81e"/><file name="Main.php" hash="aaf575a2db857eaac0f9e5006064fc3d"/></dir><file name="Tabs.php" hash="99c7258e593bff52b3976c359ad4235a"/></dir><file name="Edit.php" hash="bf987a05ecfc0c7540c6f86275582733"/><file name="Grid.php" hash="6a9077456ab1b8b72ed26406af336437"/></dir><file name="Rules.php" hash="4dc3b7ac89293d996f3e2a8fd3d12eb9"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="View.php" hash="ab9cfcc946e03f8b8fdf33d606222427"/></dir></dir></dir><dir name="System"><dir name="Advanced"><file name="Deletecontactids.php" hash="293320187b8ec5514ff69e027a808321"/><file name="Notification.php" hash="0ea9608a09ae2dad6e4c78738c583c2d"/><file name="Reimportcatalog.php" hash="a497ac63a609440dbd723bc3a2a2819f"/><file name="Reimportorders.php" hash="d29f38c149d2fbfb6b8589491b050247"/><file name="Reimportquotes.php" hash="6089df53be37afe6c4f9f10147730bc7"/><file name="Reimportreviews.php" hash="2c14cd482a448be01c8ceb3d0a9c7dd5"/><file name="Reimportsubscribers.php" hash="43b98ca37accc978ba8e9bd087b9a2c7"/><file name="Reimportwishlists.php" hash="f6bce4f06bc91f69242bd2f59220285d"/><file name="Reset.php" hash="41053dc403c95328402c0e3886307859"/><file name="Resetcustomersimport.php" hash="21bab61f962ed4a3a3c14656781c4e3b"/><file name="Runcatalogsync.php" hash="ecaa5a7b8ebc78a5f84f0870a90a0cd9"/><file name="Runcontactsync.php" hash="747b338c4fe3d3603ce60a68b7e1d5c4"/><file name="Runordersync.php" hash="58d7672919b3387d73472e6a10a850af"/><file name="Runquotesync.php" hash="c4bbc5616a080b5dbaad02717225f507"/><file name="Runreviewsync.php" hash="dafef47cb94f595af038698f1f233421"/><file name="Runsubscribersync.php" hash="090707901889d4bae741fe59747cfbff"/><file name="Runwishlistsync.php" hash="8453adae849a6ad9aaecb1f27dc46b72"/><file name="Setupdatafields.php" hash="48373eb08bb90bf4417c830723a4df11"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Ajaxvalidate.php" hash="2647705ecfcd6c1cd39489febd38b490"/><dir name="Automation"><file name="Connect.php" hash="cbe5ebdaa07cdef1086b681740cfff0f"/></dir><dir name="Config"><file name="Addressbook.php" hash="ac68b4c742413e5cdcce9c5c78e836a9"/><file name="Colorpicker.php" hash="a22c6d50728e2edaf43399093b1f4a61"/><file name="Datafield.php" hash="5b30377c5423fcccd424c4ca0ad3224f"/><file name="Enterprisevalidator.php" hash="92b60f1f8ca067887dc17afac7be6f24"/><file name="Resetcontacts.php" hash="22ef003f51db85bed2ebb85c5834b352"/><file name="Resetguests.php" hash="002ced7daec912bdad0890b26afcc4a0"/><file name="Resetsubscribers.php" hash="d5be1a595576ea63883c0249be835c7f"/><file name="Validator.php" hash="995386364c7434ad50bb87477c46f6eb"/><file name="Waitingfield.php" hash="7ffe44f6ae4b879336344882ba7e020e"/><file name="Wrapper.php" hash="2813c1d11255f10bc1ff804650a634b7"/></dir><dir name="Dynamic"><file name="Addressbookbutton.php" hash="744ca8346bf67fb7c7b96f92ad67e993"/><dir name="Basket"><file name="Crosssell.php" hash="aa00e37f15d822bf8448fbe79d70d1d5"/><file name="Related.php" hash="a1b0f467eee4513be21fdc58bdf6e59e"/><file name="Upsell.php" hash="dc7a0dbea77d7c88c9fbb660131d1773"/></dir><file name="Bestsellers.php" hash="47d8b2f89290c034c1c74ae0dad5463a"/><file name="Couponinfo.php" hash="646acc6eb041db4041c1df04e2e2fe26"/><file name="Creditmemonew.php" hash="c36bcff6b33f441b11cc5a45a5abe60d"/><file name="Crosssell.php" hash="e1085bb71156dcb1bb012044c5d4a076"/><file name="Datafieldbutton.php" hash="369eec55df4d51ce367abb9c81402976"/><file name="Fallbackchooser.php" hash="28601a2fb0407ece1269a9e3d95757de"/><file name="Fallbackcontainer.php" hash="e3044fc492790758b646a9a656ea1f79"/><dir name="Feefo"><file name="Reviews.php" hash="8a32c6e10d93621fe63c6307c5da17da"/><file name="Score.php" hash="a5a2b4a16e1645107c9dd360dbf03a6b"/></dir><file name="Gridlist.php" hash="9329c6aa0ab3118b8f03af66761f038d"/><file name="Lostbasket.php" hash="506dd83329b4b342af7239a419925a93"/><file name="Manualchooser.php" hash="d9e2e198bb53fdf4a329915db7d07281"/><file name="Manualcontainer.php" hash="689696990974ce7cd1db3df3b73bb864"/><file name="Mostviewed.php" hash="cd49997a51f34aa36470dae896336fee"/><file name="Nosto.php" hash="ec90847ea7170baf8bc197057a13dcac"/><file name="Productpush.php" hash="2623fd4a941ff0e06504dc87b877bb50"/><file name="Recentlyviewed.php" hash="b73e60e76daaca15891e3cbc3700182c"/><file name="Related.php" hash="8b8022dac18181a3ab11837be34beced"/><file name="Review.php" hash="02a962eaf8231981f3d999be9a904c77"/><file name="Upsell.php" hash="898fe5ffc06063450034a8980f54db33"/><dir name="Wishlist"><file name="Crosssell.php" hash="c5c191438715b4f8ad36c62b705cfbb5"/><file name="Related.php" hash="d94412911bb7b85ce73718adc244d6e8"/><file name="Upsell.php" hash="d79aed858a2f4c2a29299fe8868d7ef7"/></dir><file name="Wishlist.php" hash="46c433fda7ec07c82025d88014d93471"/></dir><file name="Emailapivalidate.php" hash="d2b05128440217064792b82e0911e1e6"/><file name="Installation.php" hash="03707c42dcca01e1c156b48a6246a74c"/><dir name="Sms"><file name="Smsmessagefour.php" hash="d5f61111d9c58ee99dc10cb53afea060"/><file name="Smsmessageone.php" hash="00b65d2fcd16c11b93db8fff1ffda069"/><file name="Smsmessagethree.php" hash="eec8120e729a8dd0d248e184564eefcd"/><file name="Smsmessagetwo.php" hash="5f9fa9aca352c389a2cd75ef4366baed"/></dir><dir name="Url"><file name="Creditmemoupdate.php" hash="07113ed35f709e2e65c4c61521e560a8"/><file name="Creditmemoupdateguest.php" hash="034e033269cf142f930b6bff1c36d10a"/><file name="Customerconfirmation.php" hash="260a57d13b20cda7229eb33c9a73559c"/><file name="Customerconfirmed.php" hash="1743ddf8f308eb375f44ac32da3c3c91"/><file name="Customernew.php" hash="2878ef6c84303614ac3426838f8b65d5"/><file name="Invoiceupdate.php" hash="d4eb69e2e0f5e3b7e9ea1da5d3adb578"/><file name="Invoiceupdateguest.php" hash="1ebd3c14e380043fa16b7e36d821d15c"/><file name="Newcreditmemo.php" hash="20b55e9ce5371a371ff0c94bd0fda178"/><file name="Newcreditmemoguest.php" hash="5bd16181c61c1bfb98e6eea3e1c7281f"/><file name="Newinvoice.php" hash="ff95c29ff62359ab2d0366098029a704"/><file name="Newinvoiceguest.php" hash="d05a14bb52facf8635c89642165e39ec"/><file name="Neworder.php" hash="f67882d758909fda7364fa04cb51e2f0"/><file name="Neworderguest.php" hash="ac3b96283e7e5e3ce68e35bf84f9043d"/><file name="Newshipment.php" hash="f059c430fb155c8f9da10b6dd4c67e01"/><file name="Newshipmentguest.php" hash="f73d439fb93eb7f20289e021b10b69a8"/><file name="Orderupdate.php" hash="1c27f18bf9ff58c1f0668539b7ca6896"/><file name="Orderupdateguest.php" hash="d4a2479efa67e900fbe69f6954707076"/><file name="Shipmentupdate.php" hash="f6f2fe91a159b8bf9c70c3a8773a058c"/><file name="Shipmentupdateguest.php" hash="f0ce96ef2e562cae6d155e4d38f1dcac"/></dir></dir><dir name="Widget"><dir name="Chooser"><file name="Product.php" hash="b2f77407f30411d5447fbd1ffac3e415"/></dir></dir><dir name="Wishlist"><file name="Grid.php" hash="fc60afe27facac4a3fb4677ba1aa2fbe"/></dir><file name="Wishlist.php" hash="74f5fb49b057af35ee320f442c664a6b"/></dir><file name="Basket.php" hash="435ae9c1945579ac9da0b4b9025f5251"/><file name="Coupon.php" hash="fe3affe1a8d9a7a885d81f19f4adb51e"/><dir name="Customer"><dir name="Account"><file name="Books.php" hash="6ab8f5f63d96188f9823e580c11dc7bd"/></dir></dir><file name="Edc.php" hash="d44dcf1413fca50a4d6cad12bcfc7a71"/><file name="Feefo.php" hash="b22ae2a4a60920a089ddccb45582482c"/><dir name="Order"><file name="Creditmemo.php" hash="d555e9f31e6fe0203170ba2620407119"/><file name="Invoice.php" hash="f47b6cb4c61849b6b84a4e6e84038cdc"/><file name="Shipping.php" hash="a3a1c9aa093b9dfa3f94eaea1dba9a81"/></dir><file name="Order.php" hash="263f75b72c1c0130f49cf73fee5dc7ef"/><file name="Products.php" hash="d38365bc368c1d6e8e867de39c4a1495"/><dir name="Recommended"><file name="Products.php" hash="b2c71bccc08a722297695d462d0c8e67"/><file name="Wishlistproducts.php" hash="966cde9e39e4a429b07bf592005eb82b"/></dir><dir name="System"><dir name="Email"><dir name="Template"><file name="Edit.php" hash="74dc9f59ad9ae1794aec084aac4fa811"/></dir></dir></dir><file name="Wishlist.php" hash="02ac8be0a7325f369d75c53c3b5f5952"/></dir><dir name="Helper"><file name="Config.php" hash="cad7e0156e164947b5a9932316b60723"/><file name="Dashboard.php" hash="fd6aaa5877cd92ece44db35a66353765"/><file name="Data.php" hash="7aab568e93a24489294304156127f362"/><file name="File.php" hash="152383a2910ded13aae097c386cf4947"/><file name="Recommended.php" hash="d77533b7b110828e07f7a9d9a80606fe"/><file name="Review.php" hash="df5fbc8a07818618886ffbadc64782d1"/><file name="Transactional.php" hash="a399ced08b031a9d5f4cdab3d28db6a6"/></dir><dir name="Model"><dir name="Abstract"><file name="Rest.php" hash="2ae2e2ac0851da8c7c38a4edc136cef5"/></dir><dir name="Adminhtml"><dir name="Dashboard"><file name="Content.php" hash="a415e7d3fad5d27ce27f6172a50d4997"/><dir name="Tabs"><dir name="Analysis"><file name="Abandoned.php" hash="915c2e848bdb8c2629a90d6d4326b8e8"/><file name="Customer.php" hash="f56d20e6620589c31b8468d8f06d975e"/><file name="Orders.php" hash="9ac9df6980ecedcdcd2567656ebc3a4c"/><file name="Rfm.php" hash="1bd137928d701485c995b6a236ea1ef6"/><file name="Subscriber.php" hash="1b44da59332b7f233499abe3408ed70a"/></dir></dir></dir><file name="Observer.php" hash="d0de99361d7afd45d86788700eedb216"/><dir name="Source"><file name="Addressbooks.php" hash="af92437b4ed2a7fc6fede455420f11c0"/><file name="Addressbookspref.php" hash="e5ff9e837bad955fdcd69265783c9cb0"/><dir name="Advanced"><file name="Abandonedlimit.php" hash="cd280151523091f85af89b0e22ff0abf"/><file name="Attributes.php" hash="9d08d5ab758447987c7ab9ba6d5c45b2"/><file name="Cronexpressionsone.php" hash="3877dd7041189aedf2c972b4361d2134"/><file name="Cronexpressionstwo.php" hash="0a97c58dff29e17a8448ff0c17e393d7"/><file name="Frequency.php" hash="28292fba0dd62bb6730ccd7bfa2b8e70"/><file name="Quoteattributes.php" hash="a1ddcbd001b9cd5b40157ba3c9435bef"/><file name="Transdata.php" hash="5c670a26d641c4b7e73bbaff48af3dd6"/></dir><file name="Attributes.php" hash="4b079aac1a25bec3c7c7e4152a66daa8"/><dir name="Automation"><file name="Programme.php" hash="a7143fecceaa7b7f6905634510112ef1"/></dir><file name="Campaigns.php" hash="35014267c18ab36cd6d849318914185e"/><dir name="Contact"><file name="Imported.php" hash="f44a906cb28c81c709c649b6ed8a0ccd"/><file name="Modified.php" hash="30e2f9e3d55ecd65a3cd0be1136db38d"/></dir><dir name="Customer"><dir name="Attributes"><file name="Select.php" hash="a77542918db6d3ba1c0298b475e8e9ed"/></dir></dir><file name="Datafields.php" hash="0a12d3c9c63476ea6981e416dfec6155"/><dir name="Datamapping"><file name="Datafieldaccess.php" hash="eba7f16c5e03ebc4bca00b1dcfc5dbc7"/><file name="Datafieldtype.php" hash="1b9ac7be92d60718981d4b17be4dbeda"/></dir><dir name="Dynamic"><file name="Displaytype.php" hash="3c84fc4962406d0e4b974e1c0e40f6e4"/><file name="Gridview.php" hash="5f033792839adf57fb37b277dc662237"/></dir><file name="Fontpicker.php" hash="a943850c33229bc471ad9e94023347e3"/><file name="Fontsize.php" hash="7eb842a6f895b3f8a279c53fa961f173"/><dir name="Importer"><file name="Mode.php" hash="6a4649e9311b6aaf2997a434438dfb29"/><file name="Status.php" hash="97dfab5de2ada065f335ede94301c27c"/></dir><dir name="Lostbaskets"><file name="Interval.php" hash="e3ed7930ab2b4526c0d6d2b76784331c"/><file name="Intervalminute.php" hash="7777a4757d8fa8deebfa94cca9ac4053"/></dir><file name="Orderstatus.php" hash="b02456d91d6e27ae9f330c2b16b0fb8f"/><file name="Publicdatafields.php" hash="4a162948a4ee37b8e2d38490aa4d41c1"/><dir name="Reviews"><file name="Delay.php" hash="393704cfa870165ef3b3ba59e454953b"/></dir><dir name="Rules"><file name="Condition.php" hash="377f65c9b5ee85e44b2fb4ac72021770"/><file name="Type.php" hash="2ccd61f1f5a098e876b79ac24529d41b"/><file name="Value.php" hash="94d4df5777c098e5f04f5be125772ce5"/></dir><file name="Styling.php" hash="b8578fc89114359933b7bdc64f49b4d3"/><dir name="Sweettooth"><file name="Yesno.php" hash="8345e519b0e6b8eb75bca72a16e66014"/></dir><dir name="Sync"><dir name="Catalog"><file name="Attributes.php" hash="323d3400bb91b89ff880421823f54052"/><file name="Type.php" hash="265862a32c3d11509bf4f9ec3fac65fb"/><file name="Values.php" hash="30eedb9ac9f72edb94d9abef91b9fcfb"/><file name="Visibility.php" hash="84cc10186bfc1d00dd967027f6c2a413"/></dir><file name="Yesno.php" hash="4cde23e3613eaaf04a65454540620e6b"/></dir><dir name="Transactional"><file name="Mode.php" hash="02f45553e3bc342ddd3f205993a5384e"/><file name="Port.php" hash="3dc1b86a9034e2098f98921109d7187f"/><file name="Ssl.php" hash="256550ab7cc09ce240f3dd4a4e2d4324"/></dir></dir></dir><dir name="Api2"><dir name="Subscriber"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="129b412cb9d43ed2368eb1a86e11609c"/></dir></dir></dir></dir><dir name="Apiconnector"><file name="Client.php" hash="8e3c2949fa7be3c34a86f5dc0b70f055"/><file name="Contact.php" hash="8653894b4ea2fc66d88ff6b64df67e52"/><file name="Customer.php" hash="7066d90001ecd63cc17b8bdef585f6d5"/><file name="Test.php" hash="c1c0274bb9b707af55ebdd7a4263bf6e"/></dir><file name="Automation.php" hash="46b46f6f00bd4ad07c3ac97e27857ab9"/><file name="Campaign.php" hash="eb793621c5c53eb45ea95d22c7be8c94"/><file name="Catalog.php" hash="6fb3bd93975d29c15b17cb5ce388f3eb"/><dir name="Connector"><file name="Account.php" hash="6e6bf814a8ce5a14a3496ecc4c305190"/><file name="Campaign.php" hash="e221755bbbe55bcbd2bff9b260d645b1"/><file name="Datafield.php" hash="616fa71b66833c5bb6abd5c3e24876f9"/><file name="Order.php" hash="66975a73ac3ec452c6714ada4ac5aa4c"/><file name="Product.php" hash="89faebabd39224fe768714c2f426a3e5"/><file name="Quote.php" hash="b86a2638b9e6ae6c3363d2d77125c0f2"/></dir><file name="Contact.php" hash="16f950b64036b529ecea0cb487146f82"/><dir name="Controller"><file name="Observer.php" hash="b01537009a0061c4266fbf2f8c52251d"/></dir><file name="Cron.php" hash="d6f3e99013ac3b3dc15db633ff00a19a"/><dir name="Customer"><file name="Guest.php" hash="bd1e1b8f82f25d808700c33f726cb19a"/><file name="Observer.php" hash="b9376cd4ba6ce646300aa31e30b514ec"/><dir name="Review"><file name="Rating.php" hash="a91b68302e270aa08ea3762f63225a80"/></dir><file name="Review.php" hash="f17180683194eca1e49782c36e310200"/><dir name="Wishlist"><file name="Item.php" hash="c37c6d9700771e57a039ac7f5ebe68b9"/></dir><file name="Wishlist.php" hash="598eddf031e56fa752bf64fe32773da5"/></dir><file name="Customer.php" hash="e1dd3b479c9bbf125cf1ec36206d1c7f"/><dir name="Email"><file name="Template.php" hash="18e12b6d6f7e275d8444fe37411f92cd"/></dir><file name="Email.php" hash="6cf3844e7f4c75c534a50486631ec10e"/><file name="Feed.php" hash="09151ffa241990ed28f4acb99c7d72ca"/><file name="Importer.php" hash="ab77cd2cde8ef227bf2b4c5cb87831a0"/><dir name="Newsletter"><file name="Observer.php" hash="b7091557caad19c22d247baa5e3751a5"/><file name="Sub.php" hash="a8a3fd672f62288be68001b3dc0bd58d"/><file name="Subscriber.php" hash="53c2ba474048763384dbcd0a6d590488"/></dir><file name="Order.php" hash="721ba8aa79daae66d2ec421143435fbc"/><file name="Quote.php" hash="1ca4b5c44aa678d0e2e29b09d2939c1c"/><dir name="Resource"><dir name="Automation"><file name="Collection.php" hash="b0e7826c3c153cac3d9bcaed76d1d75e"/></dir><file name="Automation.php" hash="902f696eb797323101f1a3b4c9abf84d"/><dir name="Campaign"><file name="Collection.php" hash="736cc4414d45d0dca975101bc75919c6"/></dir><file name="Campaign.php" hash="b2d6c5e4396794efd97562f2f23f2f40"/><dir name="Catalog"><file name="Collection.php" hash="ef157bd81d50a49e94058b986aac5b2e"/></dir><file name="Catalog.php" hash="e447f04904e9b964359497c79a6ea1eb"/><dir name="Contact"><file name="Collection.php" hash="a6da2689f90a668b08a549a200f9c6a9"/></dir><file name="Contact.php" hash="dcfef90f2f9ac7d3d9d3c17dec5c7591"/><dir name="Importer"><file name="Collection.php" hash="605d0e7091f309e6a5f6e2d15513c8bf"/></dir><file name="Importer.php" hash="565087fd0df9fa9c2f84cc5ac5e20e17"/><dir name="Order"><file name="Collection.php" hash="87cf24cbbd5d6c0141b7c401238b5c50"/></dir><file name="Order.php" hash="11fcf2784fb5f80594e6672d867c3d5a"/><dir name="Quote"><file name="Collection.php" hash="4d9ed530f86edb24c2d8e89db3c2b6b1"/></dir><file name="Quote.php" hash="598747a52e2a2d41dd7582bba69fef4a"/><dir name="Review"><file name="Collection.php" hash="c7e03d9bd662df5dd2a1a31e246b97e4"/></dir><file name="Review.php" hash="761eec4269e616ec356634d9346020b6"/><dir name="Rules"><file name="Collection.php" hash="b0da90dc943d5c6a8dd47d3fe245677c"/></dir><file name="Rules.php" hash="4b688c552b91487c22482f059cb49bc9"/><file name="Segment.php" hash="32b94ab790a3508658a663d2e2361065"/><file name="Setup.php" hash="442dda9eabbd1fb6e88e7d2baaa2a28c"/><dir name="Wishlist"><file name="Collection.php" hash="6d75820d8b8d5ed1af2fc77522205a8d"/></dir><file name="Wishlist.php" hash="6047d392299414bbf17c9aaf83a159ff"/></dir><file name="Review.php" hash="e9ca80670d3a7befea508d88c8970c32"/><file name="Rules.php" hash="98b8f5541915251e59b74c60443772ac"/><dir name="Sales"><file name="Observer.php" hash="5147fdc3908b9e9d4b3ef5183f7f5288"/><file name="Order.php" hash="c3d2dae9d43a979f427c9b60ae14a0cd"/><file name="Quote.php" hash="9dcff90aa74c8e04cbc2cd9cf55ede67"/></dir><dir name="Sms"><file name="Campaign.php" hash="010e082c861a29930b78dced7bd0b22b"/></dir><dir name="Sweettooth"><file name="Observer.php" hash="36ce70503cd8abbafd8b5340a06d2072"/></dir><file name="Wishlist.php" hash="7e6bdf367eb399024afb91a9575e296f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConnectorController.php" hash="799e6b5bedd00ae6e3258aa4223cf930"/><file name="CustomerController.php" hash="c28f84e3c4d7603382e33a931f3c831a"/><dir name="Email"><file name="AutomationController.php" hash="028db05f18ee05a7d7869f22f5b6c41c"/><file name="CampaignController.php" hash="b74d05cbce2391ef3fb3d148d5822d20"/><file name="CatalogController.php" hash="e43c7a33bec07c1cedbd73a0aa9c54af"/><file name="ContactController.php" hash="4594622b77cabb08b75bb632a178964f"/><file name="DashboardController.php" hash="13572a0ae47a09ed1cd4af0b870e8320"/><file name="ImporterController.php" hash="21540bb7f839cafcc6f70b7bee5b2774"/><file name="OrderController.php" hash="64b719cf2a80847b82a7849be7ffe68c"/><file name="QuoteController.php" hash="4167890a19fa6716e64a79afca55e2e3"/><file name="ReviewController.php" hash="13d74d52e160555e0c029a360d562a51"/><file name="RulesController.php" hash="6e33826563242604e83fe25344f7bf3e"/><file name="StudioController.php" hash="c24e13f8fb26805937b71d8d3eebcddc"/><file name="WishlistController.php" hash="b4d3a20f38a0a45886cc7dfa963894dc"/></dir><file name="RulesController.php" hash="98e5a0fc5983baf46eee5eb1bd185333"/><dir name="System"><dir name="Email"><file name="TemplateController.php" hash="98d9c1f5aae8f94de0102ccdcdb2fe7c"/></dir></dir><dir name="Widget"><file name="ChooserController.php" hash="7607cec3305ab9d4381c89fa12703a64"/></dir></dir><file name="AjaxController.php" hash="cd16d360815bfcf72b77a78d9dc938f0"/><dir name="Customer"><file name="AccountController.php" hash="4b78330a34d2985fa2526c935073a65f"/><file name="NewsletterController.php" hash="f7425d9524504163d6e91ae3fa640c88"/></dir><file name="DynamicContentController.php" hash="dcfc5df598412e5f630608cf08768c72"/><file name="EmailController.php" hash="d9dd2de4b462112118e5e32b02978e1c"/><file name="FeefoController.php" hash="f3613defc5132cdabc5536483ae75bb5"/><file name="ProductsController.php" hash="d54c85bc071a0fcda6a8e5969e3c5f63"/><file name="QuoteproductsController.php" hash="3867af36e829e4cf22d81a4d96757d6a"/><file name="ReportController.php" hash="c8c670deae7bec4e17bb3251015dfffb"/><file name="ResponseController.php" hash="fa37fedd598a8b353ee13d8e962759bd"/><file name="WishlistController.php" hash="a8d20ad1304bf13a5de8847e726d9ee5"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8f7bee00ad2baf155ed0e7cbe2dd1e25"/><file name="api2.xml" hash="e6be0fdc4206cb242f22b2335476b497"/><file name="config.xml" hash="ce750c73d71c98250ad440ba1657cb02"/><file name="files.yaml" hash="bdf56ddeb595f73caabe120894d0b286"/><file name="system.xml" hash="f335383d2689bb449c37b63fcf6984a3"/></dir><dir name="sql"><dir name="email_connector_setup"><file name="mysql4-install-0.1.0.php" hash="26042b2a6d9cd6241d52f826188483f4"/><file name="mysql4-install-3.0.0.php" hash="0454445ec8e47bf09cc5a94c5bffc03a"/><file name="mysql4-install-4.0.0.php" hash="a0234b5c4bc00d20564c57e8338784d7"/><file name="mysql4-install-5.0.0.php" hash="a3188b1ded81bbd5b59b63f6e38de4de"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="7fae25a8ae47fe0ba692076ac04237a4"/><file name="mysql4-upgrade-1.1.2-1.5.0.php" hash="34ac896f6e681c56d8d2dd6bf411215e"/><file name="mysql4-upgrade-1.5.0-2.0.0.php" hash="75020a02255ea63e9bc4599d85ab4e2f"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="2f71a10d19eddd97c9eba9af840e4f09"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="6b7af944ebc76328d16223cdb245c568"/><file name="mysql4-upgrade-2.0.3-2.0.4.php" hash="d71788287371f0f5416f81e03245d281"/><file name="mysql4-upgrade-2.0.4-2.0.5.php" hash="f2080852fd1e0512da9bf1074767a9b3"/><file name="mysql4-upgrade-2.0.5-2.0.6.php" hash="438ea31fe7b8ed88160ae8c231ec9ccc"/><file name="mysql4-upgrade-3.0.1-3.0.2.php" hash="7c53b291487987ae73929acea576bc51"/><file name="mysql4-upgrade-3.0.3-3.0.4.php" hash="7adaa83b6da0000ca7d1491c3af76682"/><file name="mysql4-upgrade-3.0.4-3.0.5.php" hash="c08939ca13713f335bacc593d0e780d3"/><file name="mysql4-upgrade-3.1.2-3.1.3.php" hash="f5ba2c14acd01144297fab7070558ddd"/><file name="mysql4-upgrade-3.2.1-3.3.0.php" hash="1b6540a260f25ae849f433cb60f0c39d"/><file name="mysql4-upgrade-3.3.0-3.3.1.php" hash="c7c63ebee282543d71dd4f8699d27c86"/><file name="mysql4-upgrade-3.3.2-3.3.3.php" hash="1707de69aa9294821195cfafa1a1798e"/><file name="mysql4-upgrade-3.4.0-4.0.0.php" hash="9ca61b554058b976031c4dfc2baa5a48"/><file name="mysql4-upgrade-4.0.0-4.1.0.php" hash="987700db6020c9bc607117ef3d46f771"/><file name="mysql4-upgrade-4.1.3-5.0.0.php" hash="c762c1263e3595162100ff48db52597b"/><file name="mysql4-upgrade-5.0.0-5.0.1.php" hash="a8603a251c822c67d0afde4b64d82da6"/><file name="mysql4-upgrade-5.0.4-5.1.0.php" hash="4640e2ea0587c2b3ead18cfa29b5fa04"/></dir></dir></dir><dir name="Mailcheck"><dir name="Helper"><file name="Data.php" hash="589b8909f08143ad44234f05911488df"/></dir><dir name="etc"><file name="config.xml" hash="841542418fa8e50cb53a3bde50ce38f4"/><file name="jstranslator.xml" hash="d0f175944d2c14badd2cade8d4a40585"/><file name="system.xml" hash="7d64665436e5eb104a1316c32338ec72"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="connector.xml" hash="4a5ad4efa2ea66fe9deccb81196582a1"/><file name="mailcheck.xml" hash="ff97a71e8124f8e6e55d951124addace"/></dir><dir name="template"><dir name="connector"><file name="additional-newsletter-pref.phtml" hash="5a5eb99d46d23dd618106f32688daabd"/><file name="basket.phtml" hash="cad15b4b20ad3489a6342d62dfdf9e42"/><file name="coupon.phtml" hash="07888698e1fb67778e4867a9b2317593"/><dir><dir name="creditmemo"><file name="items.phtml" hash="e911de4e7f2717698e4041c7046ed5a5"/><file name="new.phtml" hash="b6cd1d03e035c487f4b7f42e42782dd9"/><file name="newguest.phtml" hash="18b75cf7b4cee9b6853a98285e2195c1"/><file name="update.phtml" hash="fca8e2a9664e083a1395db8e6deddb02"/><file name="updateguest.phtml" hash="bbedb48ecdfc3983feba709ab9cbea4d"/></dir><dir name="customer"><file name="stats.phtml" hash="b26f6331faa6b3e662b14e5bde8c66d8"/></dir><dir name="feefo"><file name="reviews.phtml" hash="cd1dc08242588b1427534326eb7525ab"/><file name="score.phtml" hash="74d48f68f5d0ec044a8c067fa7f3c631"/></dir><dir name="invoice"><file name="new.phtml" hash="5071b6ffa75d7400bb5e4f3d4304f04a"/><file name="newguest.phtml" hash="254828a0c9400232ba62b2518b4bb246"/><file name="update.phtml" hash="3832a322ca53f4676c5cffeb47f2064b"/><file name="updateguest.phtml" hash="7fc8cfdd31af6c65a00e45d301d6bf69"/></dir><dir name="order"><file name="items.phtml" hash="9d149cbb8fe1e4c2736c6d77323abfc0"/><file name="new.phtml" hash="7d0cae172eb123d8ed491f6e8cc7e3d2"/><file name="newguest.phtml" hash="a1cca92e394fdb476030ee214ce9bbe1"/><file name="update.phtml" hash="471adf8334316e1e3270af403c1da796"/><file name="updateguest.phtml" hash="66ce43e3a2f70a70cd931253d0af4b95"/></dir><dir name="product"><file name="list.phtml" hash="e70abd933d0ede5ce2f0816d73a6540c"/><file name="nosto.phtml" hash="4c16e297faf2ad1a55a9e0a5309dd2aa"/><file name="price.phtml" hash="4d0674f2d03160617536338744330ff4"/></dir><dir name="shipping"><file name="new.phtml" hash="f0f419c9cc62ff12c94ec3426e3ae566"/><file name="newguest.phtml" hash="6e35f29c9643612a446b289e75831edd"/><file name="update.phtml" hash="b49ceefccea37e8cae2f4bc13dc0d6d6"/><file name="updateguest.phtml" hash="ddb77ce7d58b3d29ecd779078ecbd59d"/></dir></dir><file name="email_capture.phtml" hash="879403b63407bed8b2c17ff5ee7592e2"/><file name="email_capture_init.phtml" hash="6cace9896c340d3bc05e54b48e376888"/><file name="review.phtml" hash="5ea70647870d9422847f6adbbac2e7b0"/><file name="roi_code.phtml" hash="108934652f443d0328a60893cad70742"/><file name="tracking_code.phtml" hash="1bbccb72db1a769ef8e14e0df2c9febd"/><file name="wishlist.phtml" hash="50fba04e823d37802f2f896894ad7ab0"/></dir><dir name="page"><file name="blank.phtml" hash="7a10ef1534ebe3b449cf051799e5a066"/></dir><dir name="mailcheck"><file name="scripts.phtml" hash="adbf073bb2cb944c44b11d79bcca1eb5"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="connector"><file name="email.xml" hash="907e33ef044db87b0cbdadd480c5c43a"/></dir></dir><dir name="template"><dir name="connector"><file name="appcues.phtml" hash="11bb1143b5334bbcbf182d17a118f281"/><file name="beacon.phtml" hash="18d507b6041ac64b167d27a606fdcb83"/><dir><dir name="customer"><file name="stats.phtml" hash="39212effdbf09ea987f06a81b7f9d9bc"/></dir><dir name="dashboard"><file name="accountbar.phtml" hash="6041f857396a9ba87d737d6fdfcdc775"/><file name="content.phtml" hash="9e5c843b6323ea80c410662fb4f39793"/><file name="logs.phtml" hash="8d1f415d0e7f90e5aa186a7a2dbafd63"/><file name="status.phtml" hash="2b6576584376f3573c3b9a899d8afbb1"/><dir name="tabs"><dir name="analysis"><file name="index.phtml" hash="a9ef11d470dae139ad5243fc1bc91431"/><file name="rfm.phtml" hash="8129887ef234cd4571aa28c5fd124d3b"/></dir><file name="data.phtml" hash="6be723c64762c23b0eebfc92021afee2"/><dir name="general"><file name="index.phtml" hash="68fa10c2aeef745d80b60317c9461a94"/></dir></dir><file name="tabs.phtml" hash="f6de685d30e2d67ae411ce010bc713a3"/></dir><dir name="system"><dir name="config"><file name="createdatafield.phtml" hash="a1a571fa0957d7fadf346d1b89c5a0b0"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="59cf12fc34d44601486fc056c5c3339a"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Dotdigitalgroup_Email.xml" hash="8745c0b2eae08783b6203a613acdbcb8"/><file name="Dotdigitalgroup_Mailcheck.xml" hash="247272e2cc981e8b91af95962b0f0470"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="connector"><file name="config.css" hash="433bf71f40517a667ee9aba495f1746c"/><file name="dashboard.css" hash="08e2c6ae799757fd68a85781311f2b97"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="mailcheck"><file name="init.js" hash="585e518d5d2dd2d0f50243f51a3c881b"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Dotdigitalgroup_Email.csv" hash="67022e746e28d74b86509b70f336db4f"/></dir></target><target name="mageweb"><dir name="lib"><dir name="Raygun4php"><dir><dir name="Exception"><file name="UnsatisfiedDependencyException.php" hash="32b7fff3854ba20107b89a100550dc41"/><file name="UnsupportedOperationException.php" hash="951d8a9fc2bdfae0acc432ea6dabffa4"/></dir></dir><file name="README.md" hash="0aed7c6a52f358016b2c1b8f5e4e35ed"/><file name="Raygun4PhpException.php" hash="f6d4ef9f38a74578b115fbdf6e2fd3c5"/><file name="RaygunClient.php" hash="f9511057d3280a3a6d02b9b2a1517fd1"/><file name="RaygunClientMessage.php" hash="df9bd918ff13b50146b252208a5ce737"/><file name="RaygunEnvironmentMessage.php" hash="a7dff1914fcb7f6a61577b758edba47e"/><file name="RaygunExceptionMessage.php" hash="fcf7e3cbf9fbafb3ff4a6d56135a190d"/><file name="RaygunExceptionTraceLineMessage.php" hash="8aa87f7ddee8c00855737e85bbcb29cd"/><file name="RaygunIdentifier.php" hash="49461fa525594b15f3a350fd1da1c2a0"/><file name="RaygunMessage.php" hash="865eaa58577265fb52a85ee861102625"/><file name="RaygunMessageDetails.php" hash="2403453f658d7a943bd476e7fad186d7"/><file name="RaygunRequestMessage.php" hash="038703138dcd19aefbc9a7e44bd6f198"/><file name="Uuid.php" hash="9db740992b0dad17bf2047d13565b428"/><file name="cacert.crt" hash="47961e7ef15667c93cd99be01b51f00a"/></dir><dir name="connector"><dir><dir name="feefo"><file name="feedback-no-th.xsl" hash="239c40764293a65b85d9f86479ced8b6"/><file name="feedback.xsl" hash="7167570192e48fdf57baa9c2cf56986b"/></dir></dir></dir></dir><dir name="js"><dir name="connector"><dir><dir name="procolor-1.0"><dir name="img"><file name="procolor_win_bars.png" hash="a8e41fdddd2253309e0b3e5154668c24"/><file name="procolor_win_bg.gif" hash="c0558cecd0e0ffb9ca89efe00f422261"/><file name="procolor_win_bg.png" hash="4e2a34cc64888fe264fcf6249dfe40da"/><file name="procolor_win_boxes.png" hash="e971c1ca87a0cb52d32408270d00a0da"/><file name="procolor_win_close.png" hash="20a8bb9433157962ab25d86d28d088a3"/><file name="procolor_win_drop.png" hash="9ddce741de330573f082ffe83005d691"/><file name="procolor_win_palette_raw.png" hash="ea98dde528e987029af6e24dbef53922"/><file name="procolor_win_sel_circle.gif" hash="3674b62db5a6eaa4dcedb0749dde4106"/><file name="procolor_win_sel_circle.png" hash="d76195d1777e9a14ebc1a242ab712037"/><file name="procolor_win_sel_rect.gif" hash="b74a72aaf1ea21d55b8751079f283537"/><file name="procolor_win_sel_rect.png" hash="5513589e2b6dc1a980a4e65a746005d0"/><file name="procolor_win_wheel_black.png" hash="62353005bb70bbfa8ffd700112d72582"/><file name="procolor_win_wheel_rgb.jpg" hash="afdd3852c3788a58794ddf1de9557fd8"/></dir><file name="procolor.compressed.js" hash="79e463efad21212e4096d40b9e17d96c"/><file name="procolor.js" hash="93ec3cb6a0356cce4cf8e51006dfaeec"/></dir></dir><file name="selector.js" hash="5dc1900967679a41c70ed5f1755240e2"/></dir><dir name="mailcheck"><file name="magentoMailcheck.js" hash="b4eaabac0b6e8753e09ab6ea449e6519"/><file name="mailcheck.min.js" hash="25966edf6e585822063b48dd34bcee9b"/></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies><required><php><min>1.5.2</min><max>6.0.0</max></php><extension><name>curl</name><min>7.15.1</min><max>7.30.0</max></extension></required></dependencies>
34
  </package>