irzzo_autoreviewreminderemail - Version 1.0.4.3

Version Notes

The current Auto Review Reminder emailer extension module has the following features updated :
*Updated license terms
*Updated Installation pdf file
*Updated Mail section
*Updated CrontJob

Download this release

Release Info

Developer Nitin Gupta
Extension irzzo_autoreviewreminderemail
Version 1.0.4.3
Comparing to
See all releases


Code changes from version 1.0.4.2 to 1.0.4.3

Auto Review Reminder Emailer User Installation Guide -edited.pdf → Auto Review Reminder Emailer User Installation Guide.pdf RENAMED
File without changes
IrzooProductsDemo_Details.pdf DELETED
Binary file
app/code/community/MC/Mcautoreviewreminderemail/controllers/ProductController.php CHANGED
@@ -26,11 +26,13 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
26
  ->addFieldToFilter('mc_mcautoreviewemailorder_id', $orderId);
27
 
28
  if($collection->count() > 0){
 
 
29
 
30
  $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_already_submited");
31
 
32
- Mage::getSingleton('core/session')->addError($errorMessage);
33
-
34
  $this->_redirect("*/*/index/");
35
 
36
  return false;
@@ -49,11 +51,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
49
  private function validateReviewParameters($orderId, $productId){
50
 
51
  if (!$productId) {
52
-
53
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
54
-
55
- Mage::getSingleton('core/session')->addError($errorMessage);
56
-
57
  $this->_redirect("*/*/index/");
58
 
59
  return false;
@@ -62,9 +63,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
62
 
63
  if(!is_numeric($productId)){
64
 
65
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
66
-
67
- Mage::getSingleton('core/session')->addError($errorMessage);
 
68
 
69
  $this->_redirect("*/*/index/");
70
 
@@ -76,9 +78,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
76
 
77
  if(!$product->getId()){
78
 
79
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
80
-
81
- Mage::getSingleton('core/session')->addError($errorMessage);
 
82
 
83
  $this->_redirect("*/*/index/");
84
 
@@ -88,9 +91,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
88
 
89
  if (!$orderId) {
90
 
91
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
92
-
93
- Mage::getSingleton('core/session')->addError($errorMessage);
 
94
 
95
  $this->_redirect("*/*/index/");
96
 
@@ -100,9 +104,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
100
 
101
  if(!is_numeric($orderId)){
102
 
103
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
104
-
105
- Mage::getSingleton('core/session')->addError($errorMessage);
 
106
 
107
  $this->_redirect("*/*/index/");
108
 
@@ -114,10 +119,10 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
114
 
115
  if(!$order->getId()){
116
 
117
- $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_incorrect_parameter");
118
-
119
- Mage::getSingleton('core/session')->addError($errorMessage);
120
-
121
  $this->_redirect("*/*/index/");
122
 
123
  return false;
@@ -208,32 +213,20 @@ class MC_Mcautoreviewreminderemail_ProductController extends Mage_Review_Product
208
  */
209
 
210
  public function postAction(){
211
-
212
- $productId = $this->getRequest()->getParam('id');
213
-
214
- $orderId = base64_decode($this->getRequest()->getPost('oid'));
215
-
216
- $flag = $this->validateReviewParameters($orderId, $productId);
217
-
218
- if(!$flag){
219
-
220
- return false;
221
-
222
- }
223
-
224
- $flag = $this->isAlreadyReview($orderId, $productId);
225
-
226
- if(!$flag){
227
-
228
- return false;
229
-
230
- }
231
-
232
- $this->getRequest()->setPost('mc_mcautoreviewemailorder_id', $orderId);
233
-
234
- Mage::getSingleton('core/session')->setData("created_review", 1);
235
-
236
- parent::postAction();
237
 
238
  }
239
 
26
  ->addFieldToFilter('mc_mcautoreviewemailorder_id', $orderId);
27
 
28
  if($collection->count() > 0){
29
+ $store_link = Mage::getBaseUrl();
30
+ $errorMessage_allready = "You have already submitted review for this product.To continue shopping, visit <a href=".$store_link.">here</a>";
31
 
32
  $errorMessage = Mage::getStoreConfig("mcautoreviewreminderemail/constant/error_message_already_submited");
33
 
34
+ Mage::getSingleton('core/session')->addError($errorMessage_allready);
35
+ $errorMessage_allready = '';
36
  $this->_redirect("*/*/index/");
37
 
38
  return false;
51
  private function validateReviewParameters($orderId, $productId){
52
 
53
  if (!$productId) {
54
+ $store_link = Mage::getBaseUrl();
55
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
56
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
57
+ $errorMessage_param = '';
 
58
  $this->_redirect("*/*/index/");
59
 
60
  return false;
63
 
64
  if(!is_numeric($productId)){
65
 
66
+ $store_link = Mage::getBaseUrl();
67
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
68
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
69
+ $errorMessage_param = '';
70
 
71
  $this->_redirect("*/*/index/");
72
 
78
 
79
  if(!$product->getId()){
80
 
81
+ $store_link = Mage::getBaseUrl();
82
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
83
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
84
+ $errorMessage_param = '';
85
 
86
  $this->_redirect("*/*/index/");
87
 
91
 
92
  if (!$orderId) {
93
 
94
+ $store_link = Mage::getBaseUrl();
95
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
96
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
97
+ $errorMessage_param = '';
98
 
99
  $this->_redirect("*/*/index/");
100
 
104
 
105
  if(!is_numeric($orderId)){
106
 
107
+ $store_link = Mage::getBaseUrl();
108
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
109
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
110
+ $errorMessage_param = '';
111
 
112
  $this->_redirect("*/*/index/");
113
 
119
 
120
  if(!$order->getId()){
121
 
122
+ $store_link = Mage::getBaseUrl();
123
+ $errorMessage_param = "Oops, something went wrong. Please try again later.To continue shopping, visit <a href=".$store_link.">here</a>";
124
+ Mage::getSingleton('core/session')->addError($errorMessage_param);
125
+ $errorMessage_param = '';
126
  $this->_redirect("*/*/index/");
127
 
128
  return false;
213
  */
214
 
215
  public function postAction(){
216
+ $orderId = trim(base64_decode($this->getRequest()->getPost('oid')));
217
+ if( isset($orderId) && $orderId !=''):
218
+ $productId = $this->getRequest()->getParam('id');
219
+ $orderId = base64_decode($this->getRequest()->getPost('oid'));
220
+ $flag = $this->validateReviewParameters($orderId, $productId);
221
+ if(!$flag){return false;}
222
+ $flag = $this->isAlreadyReview($orderId, $productId);
223
+ if(!$flag){ return false; }
224
+ $this->getRequest()->setPost('mc_mcautoreviewemailorder_id', $orderId);
225
+ Mage::getSingleton('core/session')->setData("created_review", 1);
226
+ parent::postAction();
227
+ else:
228
+ parent::postAction();
229
+ endif;
 
 
 
 
 
 
 
 
 
 
 
 
230
 
231
  }
232
 
app/code/community/MC/Mcautoreviewreminderemail/etc/config.xml CHANGED
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <MC_Mcautoreviewreminderemail>
15
- <version>1.0.4.2</version>
16
  </MC_Mcautoreviewreminderemail>
17
  </modules>
18
  <frontend>
12
  <config>
13
  <modules>
14
  <MC_Mcautoreviewreminderemail>
15
+ <version>1.0.0</version>
16
  </MC_Mcautoreviewreminderemail>
17
  </modules>
18
  <frontend>
app/code/community/MC/Mcautoreviewreminderemail/sql/mcautoreviewreminderemail_setup/{mysql4-install-1.0.4.2.php → mysql4-install-1.0.0.php} RENAMED
File without changes
app/design/frontend/default/default/template/MC/Mcautoreviewreminderemail/orderItems.phtml CHANGED
@@ -17,22 +17,25 @@ $items = $this->getOrderItems();
17
 
18
  <?php if($order){ ?>
19
  <?php if ($billingAddress) { ?>
20
- <p>Thank you <?php echo $billingAddress->getFirstname() ?> <?php echo $billingAddress->getLastname()." for using ".Mage::getBaseUrl(); ?> </p>
21
- <p>Your purchase information are following:</p>
 
 
 
22
  <br/><br/>
23
  <?php } ?>
24
 
25
  <p>
26
- <div><b>Purchased On#</b> <?php echo date('F j, Y', strtotime($order->getCreatedAt())) ?></div>
27
- <div><b>Order#</b> <?php echo $order->getIncrementId() ?></div>
28
  </p>
29
 
30
  <?php if ($items) { ?>
31
  <table width="100%">
32
  <tr>
33
- <td><b>Name</b></td>
34
- <td><b>Qty</b></td>
35
- <td><b>Price</b></td>
36
  <td>&nbsp;</td>
37
  </tr>
38
  <?php foreach ($items as $item) { ?>
@@ -43,10 +46,10 @@ $items = $this->getOrderItems();
43
  <td>
44
  <?php if(!$this->isAlreadyReviewed($item->getProductId())){ ?>
45
  <a href="<?php echo $this->getUrl('review/product/reviewForm/id/'.$item->getProductId().'/oid/'.base64_encode($order->getId())); ?>">
46
- Review
47
  </a>
48
  <?php }else{ ?>
49
- <p style="color:green;">Reviewed</p>
50
  <?php } ?>
51
  </td>
52
  </tr>
@@ -54,5 +57,5 @@ $items = $this->getOrderItems();
54
  </table>
55
  <?php } ?>
56
  <?php }else{ ?>
57
- <p style="color:red;">Order not found.</p>
58
  <?php } ?>
17
 
18
  <?php if($order){ ?>
19
  <?php if ($billingAddress) { ?>
20
+ <?php foreach ($items as $item) {
21
+ if($this->isAlreadyReviewed($item->getProductId())){?>
22
+ <p><?php echo $this->__('Thanks for your review.To continue shopping, visit'); ?> <a href="<?php echo Mage::getBaseUrl();?>" ><?php echo $this->__('here');?></a></p>
23
+ <?php } }?>
24
+ <p><?php echo $this->__('Your purchase information are following:');?></p>
25
  <br/><br/>
26
  <?php } ?>
27
 
28
  <p>
29
+ <div><b><?php echo $this->__('Purchased On#');?></b> <?php echo date('F j, Y', strtotime($order->getCreatedAt())) ?></div>
30
+ <div><b><?php echo $this->__('Order#');?></b> <?php echo $order->getIncrementId() ?></div>
31
  </p>
32
 
33
  <?php if ($items) { ?>
34
  <table width="100%">
35
  <tr>
36
+ <td><b><?php echo $this->__('Name');?></b></td>
37
+ <td><b><?php echo $this->__('Qty');?></b></td>
38
+ <td><b><?php echo $this->__('Price');?></b></td>
39
  <td>&nbsp;</td>
40
  </tr>
41
  <?php foreach ($items as $item) { ?>
46
  <td>
47
  <?php if(!$this->isAlreadyReviewed($item->getProductId())){ ?>
48
  <a href="<?php echo $this->getUrl('review/product/reviewForm/id/'.$item->getProductId().'/oid/'.base64_encode($order->getId())); ?>">
49
+ <?php echo $this->__('Review');?>
50
  </a>
51
  <?php }else{ ?>
52
+ <p style="color:green;"><?php echo $this->__('Reviewed');?></p>
53
  <?php } ?>
54
  </td>
55
  </tr>
57
  </table>
58
  <?php } ?>
59
  <?php }else{ ?>
60
+ <p style="color:red;"><?php echo $this->__('Order not found.');?></p>
61
  <?php } ?>
app/etc/modules/MC_Mcautoreviewreminderemail.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <!--
4
+ Document : MC_Mcautoreviewreminderemail.xml
5
+ Created on : May 10, 2012, 3:05 PM
6
+ Author : Magento Complete
7
+ Description:
8
+ Purpose of the document follows.
9
+ -->
10
+
11
+ <config>
12
+ <modules>
13
+ <MC_Mcautoreviewreminderemail>
14
+ <active>true</active>
15
+ <codePool>community</codePool>
16
+ </MC_Mcautoreviewreminderemail>
17
+ </modules>
18
+ </config>
package.xml CHANGED
@@ -1,40 +1,49 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>irzzo_autoreviewreminderemail</name>
4
- <version>1.0.4.2</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>Provides you the power to send automated emails to customers asking them to review the products purchased.</summary>
10
  <description>&lt;p&gt;&lt;strong&gt;Auto Review Reminder &lt;/strong&gt;&lt;/p&gt;&#xD;
11
  &lt;p&gt;Irzoo&#x2019;s Auto Review Reminder Emailer will 100% get you more customer/client reviews on your websites. Product reviews have a great influence on customers buying decision (to click on purchase Now button or not), as they provide them with added knowledge about the product. Reviews prove that services offered by you are best in class and the product is one they are looking for.&lt;/p&gt;&#xD;
12
- &lt;p&gt;However, just a few customers take out time to write reviews about the product used, particularly if everything went as expected.&lt;/p&gt;&#xD;
13
- &lt;p&gt;Auto review reminder emailer provides you the possibility to send email messages to your customers requesting them to review the products they have purchase from your e-commerce store. An automated email is sent after stipulated number of days(configurable by administrator) after order shipment and includes a link that will automatically log in the buyer. &lt;/p&gt;&#xD;
14
- &lt;p&gt;&lt;/p&gt;&#xD;
15
- &lt;h2&gt;Obtaining Your Free License Key&lt;/h2&gt;&#xD;
16
- &lt;p&gt; Contact us at &lt;a href="mailto:support@irzoo.com"&gt;support@irzoo.com&lt;/a&gt; for Free License Key.&lt;/p&gt;&#xD;
17
- &lt;p&gt;&lt;/p&gt;&#xD;
18
  &lt;p&gt;&lt;strong&gt;Features of Auto Review Reminder:&lt;/strong&gt;&lt;/p&gt;&#xD;
19
  &lt;ul&gt;&#xD;
20
- &lt;li&gt;Allows for sending product review reminders automatically&lt;/li&gt;&#xD;
21
- &lt;li&gt;Allows for choosing status after which reminder must be sent&lt;/li&gt;&#xD;
 
 
 
 
 
22
  &lt;li&gt;Provides Admin with an editable HTML template for reminders&lt;/li&gt;&#xD;
 
23
  &lt;li&gt;Multi-store compatible&lt;/li&gt;&#xD;
24
- &lt;li&gt;Delay Can be configured&lt;/li&gt;&#xD;
 
 
25
  &lt;/ul&gt;&#xD;
26
  &lt;p&gt;&lt;/p&gt;&#xD;
 
 
 
27
  &lt;h2&gt;Need more information ?&lt;/h2&gt;&#xD;
28
  &lt;p&gt;Download &lt;a href="http://www.irzoo.com/documentation/Review_Mail_User_Installation_Guide_1.0.01.pdf"&gt;Review Mail User Manual&lt;/a&gt;&lt;/p&gt;&#xD;
29
  &lt;p&gt;Take a look at our website for more information : &lt;a href="http://www.irzoo.com/index.php/magento-professional-extensions/auto-review-remainder-emailer.html"&gt;IRZOO&lt;/a&gt;&lt;/p&gt;</description>
30
- <notes>The current Auto Review reminder extension has the following features updated :&#xD;
31
- *Updated Delay functionality&#xD;
 
32
  *Updated Mail section&#xD;
33
- *Updated Cron Job</notes>
34
- <authors><author><name>Nitin Gupta</name><user>irzoo</user><email>support@irzoo.com</email></author></authors>
35
- <date>2013-02-22</date>
36
- <time>12:09:37</time>
37
- <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="MC"><dir name="Mcautoreviewreminderemail"><dir name="Block"><file name="OrderItems.php" hash="ec8bd2ac45848919fbb1c5a297e8ef81"/></dir><dir name="Helper"><file name="Data.php" hash="ae57c5fb854298663972b44643b220dc"/></dir><dir name="Model"><file name="Mcautoreviewreminderemail.php" hash="c1495500fca5b5675f2d62fd110233be"/><file name="Mcautoreviewreminderemailconfig.php" hash="be49b753adb847fa09cfb9230306e80d"/><file name="Mcautoreviewreminderemailtemplate.php" hash="24c333e8814ab3f5d139edc87eb57b36"/></dir><dir name="controllers"><file name="ProductController.php" hash="0ac96b4388b0243c1c28f7fa34de39a8"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a75635dc4af87408bd179753ae06f86"/><file name="config.xml" hash="db263f48d111838b02a34b750dfe3316"/><file name="system.xml" hash="f904836fb5c360f37d5768e9a57b31ff"/></dir><dir name="sql"><dir name="mcautoreviewreminderemail_setup"><file name="mysql4-install-1.0.4.2.php" hash="6981afef458486650f0ce78c0527e963"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="mcautoreviewreminderemail.xml" hash="7c566a39c204e83a55309f2bfadfffa3"/></dir><dir name="template"><dir name="MC"><dir name="Mcautoreviewreminderemail"><file name="form.phtml" hash="360ffad933e92ab8e07e35bcc56b6546"/><file name="index.phtml" hash="a94d21c7aad44514f23edccff49e930f"/><file name="loadmorereviews.phtml" hash="1f5ca476132b2d1f10768e9ff08224cc"/><file name="orderItems.phtml" hash="b93248494d73fb5a8f5406f32f7e57a4"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="MC_Mcautoreviewreminderemail.xml" hash=""/></dir></dir><dir name="."><file name="Auto Review Reminder Emailer User Installation Guide -edited.pdf" hash="d348caa95a41168e153d1dbd0c888b8c"/><file name="IrzooProductsDemo_Details.pdf" hash="65a9a1bfa5ee8d04ebcf32e2b0dbda4b"/></dir></target></contents>
 
38
  <compatible/>
39
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
40
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>irzzo_autoreviewreminderemail</name>
4
+ <version>1.0.4.3</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>Auto Review Reminder Emailer extension .</summary>
10
  <description>&lt;p&gt;&lt;strong&gt;Auto Review Reminder &lt;/strong&gt;&lt;/p&gt;&#xD;
11
  &lt;p&gt;Irzoo&#x2019;s Auto Review Reminder Emailer will 100% get you more customer/client reviews on your websites. Product reviews have a great influence on customers buying decision (to click on purchase Now button or not), as they provide them with added knowledge about the product. Reviews prove that services offered by you are best in class and the product is one they are looking for.&lt;/p&gt;&#xD;
12
+ &lt;p&gt;However, just a few costumers take out time to write reviews about the product used, particularly if everything went as expected.&lt;/p&gt;&#xD;
13
+ &lt;p&gt;Auto review reminder emailer is created to automatically remind customers to write a review &#x2013; an automated email is sent after stipulated number of days after order shipment and includes a link that will automatically log in the buyer. &lt;/p&gt;&#xD;
 
 
 
 
14
  &lt;p&gt;&lt;strong&gt;Features of Auto Review Reminder:&lt;/strong&gt;&lt;/p&gt;&#xD;
15
  &lt;ul&gt;&#xD;
16
+ &lt;li&gt;Allows for sending product review reminders automatically/manually&lt;/li&gt;&#xD;
17
+ &lt;li&gt;Allows for choosing more than one-status or a custom-status&lt;/li&gt;&#xD;
18
+ &lt;li&gt;Enables Admin to create/delete/edit reminders &lt;/li&gt;&#xD;
19
+ &lt;li&gt;Enables Admin to ascertain which order status is to prompt review reminders&lt;/li&gt;&#xD;
20
+ &lt;li&gt;Enables Admin to classify &amp; filter review reminders by store view&lt;/li&gt;&#xD;
21
+ &lt;li&gt;Facilitates to set whether all or only those subscribed to newsletter customers will be able to receive review reminders via Email&lt;/li&gt;&#xD;
22
+ &lt;li&gt;Saves the history of sent review reminders and facilitates to delete them&lt;/li&gt;&#xD;
23
  &lt;li&gt;Provides Admin with an editable HTML template for reminders&lt;/li&gt;&#xD;
24
+ &lt;li&gt;Allows customer to Unsubscribe from receiving review reminders &lt;/li&gt;&#xD;
25
  &lt;li&gt;Multi-store compatible&lt;/li&gt;&#xD;
26
+ &lt;li&gt;Easy dashboard overview of pending reminders&lt;/li&gt;&#xD;
27
+ &lt;li&gt;Multiple purchases of the same product by the same customer, one review reminder&lt;/li&gt;&#xD;
28
+ &lt;li&gt;Free configuration of the order delay between purchase and review reminder&lt;/li&gt;&#xD;
29
  &lt;/ul&gt;&#xD;
30
  &lt;p&gt;&lt;/p&gt;&#xD;
31
+ &lt;h2&gt;Obtaining Your Free License Key&lt;/h2&gt;&#xD;
32
+ &lt;p&gt; Contact us at &lt;a href="mailto:support@irzoo.com"&gt;support@irzoo.com&lt;/a&gt; for Free License Key.&lt;/p&gt;&#xD;
33
+ &lt;p&gt;&lt;/p&gt;&#xD;
34
  &lt;h2&gt;Need more information ?&lt;/h2&gt;&#xD;
35
  &lt;p&gt;Download &lt;a href="http://www.irzoo.com/documentation/Review_Mail_User_Installation_Guide_1.0.01.pdf"&gt;Review Mail User Manual&lt;/a&gt;&lt;/p&gt;&#xD;
36
  &lt;p&gt;Take a look at our website for more information : &lt;a href="http://www.irzoo.com/index.php/magento-professional-extensions/auto-review-remainder-emailer.html"&gt;IRZOO&lt;/a&gt;&lt;/p&gt;</description>
37
+ <notes>The current Auto Review Reminder emailer extension module has the following features updated :&#xD;
38
+ *Updated license terms&#xD;
39
+ *Updated Installation pdf file&#xD;
40
  *Updated Mail section&#xD;
41
+ *Updated CrontJob&#xD;
42
+ </notes>
43
+ <authors><author><name>Nitin Gupta</name><user>Irzoo</user><email>support@irzoo.com</email></author></authors>
44
+ <date>2013-04-29</date>
45
+ <time>06:07:35</time>
46
+ <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="MC"><dir name="Mcautoreviewreminderemail"><dir name="Block"><file name="OrderItems.php" hash="ec8bd2ac45848919fbb1c5a297e8ef81"/></dir><dir name="Helper"><file name="Data.php" hash="ae57c5fb854298663972b44643b220dc"/></dir><dir name="Model"><file name="Mcautoreviewreminderemail.php" hash="c1495500fca5b5675f2d62fd110233be"/><file name="Mcautoreviewreminderemailconfig.php" hash="be49b753adb847fa09cfb9230306e80d"/><file name="Mcautoreviewreminderemailtemplate.php" hash="24c333e8814ab3f5d139edc87eb57b36"/></dir><dir name="controllers"><file name="ProductController.php" hash="e96b75e1071286db282c025a63655ad2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a75635dc4af87408bd179753ae06f86"/><file name="config.xml" hash="e6d1dc5ff66f9edec926daf16c2b7a93"/><file name="system.xml" hash="f904836fb5c360f37d5768e9a57b31ff"/></dir><dir name="sql"><dir name="mcautoreviewreminderemail_setup"><file name="mysql4-install-1.0.0.php" hash="6981afef458486650f0ce78c0527e963"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="mcautoreviewreminderemail.xml" hash="7c566a39c204e83a55309f2bfadfffa3"/></dir><dir name="template"><dir name="MC"><dir name="Mcautoreviewreminderemail"><file name="form.phtml" hash="360ffad933e92ab8e07e35bcc56b6546"/><file name="index.phtml" hash="a94d21c7aad44514f23edccff49e930f"/><file name="loadmorereviews.phtml" hash="1f5ca476132b2d1f10768e9ff08224cc"/><file name="orderItems.phtml" hash="b09b946e48a417a0b02fd43f1da3e34a"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="MC_Mcautoreviewreminderemail.xml" hash="ab944a54085cd6511dfc9068bc8f884d"/></dir></dir></dir><dir name="."><file name="Auto Review Reminder Emailer User Installation Guide.pdf" hash="d348caa95a41168e153d1dbd0c888b8c"/></dir></target></contents>
47
  <compatible/>
48
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
49
  </package>