Adfab_Emailcampaign - Version 1.1.0

Version Notes

This version includes :
- A message on the admin dashboard on first launch (only) to confirm you that the module has been correctly installed
- New templates appear for the mails

Download this release

Release Info

Developer Adfab
Extension Adfab_Emailcampaign
Version 1.1.0
Comparing to
See all releases


Code changes from version 1.0.0 to 1.1.0

app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tab/Form.php CHANGED
@@ -126,7 +126,7 @@ class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Tab_Form extends Mage_Ad
126
  /**
127
  * Adfab Logo. This module is open source and we just ask you to let this logo for a very passive ad :)
128
  */
129
- $fieldset = $form->addFieldset('emailcampaign_usage_form', array('class' => 'fieldset-wide', 'legend'=>Mage::helper('adfab_emailcampaign')->__('Campaign Usage') . ' offered by <a href="http://www.adfab.fr"><img src="http://94.23.211.86/track/logo.gif" style="vertical-align: middle;"/></a>'));
130
 
131
  foreach ($campaigns as $campaign) {
132
 
126
  /**
127
  * Adfab Logo. This module is open source and we just ask you to let this logo for a very passive ad :)
128
  */
129
+ $fieldset = $form->addFieldset('emailcampaign_usage_form', array('class' => 'fieldset-wide', 'legend'=>Mage::helper('adfab_emailcampaign')->__('Campaign Usage') . ' offered by <a href="http://www.adfab.fr"><img src="http://community.adfab.fr/logo.gif" style="vertical-align: middle;"/></a>'));
130
 
131
  foreach ($campaigns as $campaign) {
132
 
app/code/community/Adfab/Emailcampaign/Model/Adminhtml/Observer.php CHANGED
@@ -7,8 +7,24 @@ class Adfab_Emailcampaign_Model_Adminhtml_Observer extends Mage_Core_Model_Abst
7
  */
8
  function transactionalemail_layout_after($observer) {
9
  try {
10
- $controller = $observer->getAction();
11
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  if($controller->getFullActionName() == 'adminhtml_system_email_template_edit')
13
  {
14
  $layout = $controller->getLayout();
7
  */
8
  function transactionalemail_layout_after($observer) {
9
  try {
10
+ $controller = $observer->getAction();
11
+
12
+ /*
13
+ * This part is taking care of the first launch and displays a welcome popin
14
+ */
15
+ $launchdone = Mage::getModel('adfab_emailcampaign/flag')->loadSelf();
16
+
17
+ if (Mage::getSingleton('admin/session')->isFirstPageAfterLogin() && empty($launchdone->getState())){
18
+
19
+ $layout = $controller->getLayout();
20
+ $layout->getBlock('notification_window')->setTemplate('emailcampaign/notification/window.phtml');
21
+
22
+ $launchdone->setState(1)->save();
23
+ }
24
+
25
+ /*
26
+ * May I activate wysiwyg on transactional emails ?
27
+ */
28
  if($controller->getFullActionName() == 'adminhtml_system_email_template_edit')
29
  {
30
  $layout = $controller->getLayout();
app/code/community/Adfab/Emailcampaign/Model/Flag.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Adfab extension for Magento
4
+ *
5
+ * Long description of this file (if any...)
6
+ *
7
+ * NOTICE OF LICENSE
8
+ *
9
+ * This source file is subject to the Open Software License (OSL 3.0)
10
+ * that is bundled with this package in the file LICENSE.txt.
11
+ * It is also available through the world-wide-web at this URL:
12
+ * http://opensource.org/licenses/osl-3.0.php
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab EmailCampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab EmailCampaign module for your needs
19
+ * please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category Adfab
22
+ * @package Adfab_EmailCampaign
23
+ * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+ class Adfab_EmailCampaign_Model_Flag extends Mage_Core_Model_Flag {
27
+
28
+ /**
29
+ * Flag code
30
+ *
31
+ * @var string
32
+ */
33
+ protected $_flagCode = 'emailcampaign_launch_done';
34
+ }
app/code/community/Adfab/Emailcampaign/Model/Source/Template.php CHANGED
@@ -62,17 +62,17 @@ class Adfab_EmailCampaign_Model_Source_Template
62
  }
63
  // sort by names alphabetically
64
  asort($result);
65
- if (!$asHash) {
66
- $options = array();
67
- $options[] = array('value' => '', 'label' => '---------Choose Email Template---------');
68
- foreach ($result as $k => $v) {
69
- if ($k == '')
70
- continue;
71
- $options[] = array('value' => $k, 'label' => $v);
72
- }
73
-
74
- $result = $options;
75
  }
 
 
 
76
  return $result;
77
  }
78
  }
62
  }
63
  // sort by names alphabetically
64
  asort($result);
65
+
66
+ $options = array();
67
+ $options[] = array('value' => '', 'label' => '---------Choose Email Template---------');
68
+ foreach ($result as $k => $v) {
69
+ if ($k == '')
70
+ continue;
71
+ $options[] = array('value' => $k, 'label' => $v);
 
 
 
72
  }
73
+
74
+ $result = $options;
75
+
76
  return $result;
77
  }
78
  }
app/design/adminhtml/default/default/template/emailcampaign/notification/window.phtml ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @see Mage_Adminhtml_Block_Notification_Window
4
+ */
5
+ ?>
6
+ <?php if ($this->canShow()): ?>
7
+ <?php $noticeIcon = (Mage::app()->getFrontController()->getRequest()->isSecure() ? 'https://' : 'http://')
8
+ . sprintf(Mage::getStoreConfig('system/adminnotification/severity_icons_url'), Mage::getVersion(), 'SEVERITY_NOTICE');
9
+ ?>
10
+ <script type="text/javascript">
11
+ //<![CDATA[
12
+ var messagePopupClosed = false;
13
+ function openMessagePopup() {
14
+ var height = $('html-body').getHeight();
15
+ $('message-popup-window-mask').setStyle({'height':height+'px'});
16
+ toggleSelectsUnderBlock($('message-popup-window-mask'), false);
17
+ Element.show('message-popup-window-mask');
18
+ $('message-popup-window').setStyle({'top':'130px'});
19
+ }
20
+
21
+ function closeMessagePopup() {
22
+ toggleSelectsUnderBlock($('message-popup-window-mask'), true);
23
+ Element.hide('message-popup-window-mask');
24
+ $('message-popup-window').setStyle({'top':'9999em'});
25
+ $('videoframe').replace('');
26
+ messagePopupClosed = true;
27
+ }
28
+
29
+ Event.observe(window, 'load', openMessagePopup);
30
+ Event.observe(window, 'keyup', function(evt) {
31
+ if(messagePopupClosed) return;
32
+ var code;
33
+ if (evt.keyCode) code = evt.keyCode;
34
+ else if (evt.which) code = evt.which;
35
+ if (code == Event.KEY_ESC) {
36
+ closeMessagePopup();
37
+ }
38
+ });
39
+ //]]>
40
+ </script>
41
+ <div id="message-popup-window-mask" style="display:none;"></div>
42
+ <div id="message-popup-window" class="message-popup" style="width:800px; left:50%; margin:0 0 0 -400px;">
43
+ <div class="message-popup-head">
44
+ <a href="#" onclick="closeMessagePopup(); return false;" title="<?php echo $this->getCloseText(); ?>"><span><?php echo $this->getCloseText(); ?></span></a>
45
+ <h2><?php echo $this->getHeaderText(); ?></h2>
46
+ </div>
47
+ <div class="message-popup-content">
48
+ <div class="message">
49
+ <span class="message-icon message-notice" style="background-image:url(<?php echo $noticeIcon ?>);"><?php echo "THANK YOU";?></span>
50
+ <p style="min-height: 25em; overflow:hidden; color:#644f3b; padding:21px 21px 10px;">
51
+ <?php echo "<b>Thank you for installing the emailcampaign module. Hope you'll enjoy using it</b>" ?><br/>
52
+ <?php echo "This video is our intervention during Magento Imagine in Las Vegas about performance." ?><br/>
53
+ <iframe id="videoframe" width="560" height="315" src="//www.youtube.com/embed/16-IiYjfxlg?rel=0" frameborder="0" allowfullscreen></iframe>
54
+ </p>
55
+ </div>
56
+ <!-- p class="read-more"><a href="<?php echo $this->getNoticeMessageUrl(); ?>" onclick="this.target='_blank';"><?php echo $this->getReadDetailsText(); ?></a></p-->
57
+ </div>
58
+ </div>
59
+ <?php endif; ?>
app/locale/en_US/template/email/emailcampaign/abandoned_cart.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject your cart @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Welcome to {{var store.getFrontendName()}}. To continue shopping on our site just click <a href="{{store url="checkout/cart/"}}" style="color:#1E7EC8;">Login</a>.</p>
31
+ <p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0; padding:13px 18px; background:#f9f9f9;">
32
+ You have these products currently in your cart:<br/>
33
+ <strong>Product1</strong>: <br/>
34
+ <strong>Product2</strong>: </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
36
+ </td>
37
+ </tr>
38
+ <tr>
39
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
40
+ </tr>
41
+ </table>
42
+ </td>
43
+ </tr>
44
+ </table>
45
+ </div>
46
+ </body>
app/locale/en_US/template/email/emailcampaign/abandonned_cart.html DELETED
@@ -1 +0,0 @@
1
- <h3>youhou {{var customer.firstname}} your cart is more than ? days old</h3>
 
app/locale/en_US/template/email/emailcampaign/customer_birthday.html CHANGED
@@ -1 +1,42 @@
1
- <h3>youhou {{var customer.firstname}} today is your birthday</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Happy birthday ! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Happy birthday !!! To start shopping on our site just go to our <a href="{{store url="/"}}" style="color:#1E7EC8;">homepage</a>.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
app/locale/en_US/template/email/emailcampaign/inscription_anniversary.html CHANGED
@@ -1 +1,42 @@
1
- <h3>HEYYYY {{var customer.firstname}} today is your inscription anniversary</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Something to celebrate ! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Welcome to {{var store.getFrontendName()}}. This is your registration anniversary and we want to thank you for that : Come on our <a href="{{store url="/"}}" style="color:#1E7EC8;">site</a>.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
app/locale/en_US/template/email/emailcampaign/welcome_reminder.html CHANGED
@@ -1 +1,42 @@
1
- <h3>HEYYYY {{var customer.firstname}} welcome reminder</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Welcome again ! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Welcome to {{var store.getFrontendName()}}. To start shopping on our site just go to our <a href="{{store url="/"}}" style="color:#1E7EC8;">homepage</a>.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
app/locale/en_US/template/email/emailcampaign/wishlist_reminder.html CHANGED
@@ -1 +1,42 @@
1
- <h3>HEYYYY {{var customer.firstname}} your wishlist is 10 days old</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Wishlist reminder @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Your wishlist is ready to go. To start shopping on our site just go to our <a href="{{store url="/"}}" style="color:#1E7EC8;">homepage</a>.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
app/locale/en_US/template/email/emailcampaign/wishlist_stock_alert.html CHANGED
@@ -1 +1,42 @@
1
- <h3>HEYYYY {{var customer.firstname}} stock alert for an item in your wishlsit</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject You're short in time ! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email"
8
+ }
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Dear {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Some products in your wishlist will be out of stock soon. To start shopping on our site just go to our <a href="{{store url="/"}}" style="color:#1E7EC8;">homepage</a>.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">If you have any questions about your account or any other matter, please feel free to contact us at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> or by phone at {{config path='general/store_information/phone'}}.</p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Adfab_Emailcampaign</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/AFL-3.0">AFL</license>
7
  <channel>community</channel>
@@ -20,17 +20,13 @@ We've decided to offer you this incredibly efficient tool ! &#xD;
20
  - Registration anniversary&#xD;
21
  - Wishlist reminder&#xD;
22
  - Wishlist stock alert</description>
23
- <notes>6 types of campaigns are included :&#xD;
24
- - Welcome reminder&#xD;
25
- - Abandoned cart&#xD;
26
- - Birthday&#xD;
27
- - Registration anniversary&#xD;
28
- - Wishlist reminder&#xD;
29
- - Wishlist stock alert</notes>
30
  <authors><author><name>Adfab</name><user>Connect</user><email>dev@adfab.fr</email></author><author><name>Arnaud</name><user>Hours</user><email>arnaud.hours@adfab.fr</email></author><author><name>Gr&#xE9;gory</name><user>Besson</user><email>gregory.besson@adfab.fr</email></author><author><name>Fabien</name><user>Logarinho</user><email>fabien.logarinho@adfab.fr</email></author></authors>
31
- <date>2014-08-04</date>
32
- <time>12:24:55</time>
33
- <contents><target name="magecommunity"><dir name="Adfab"><dir name="Emailcampaign"><dir name="Block"><dir name="Adminhtml"><dir name="Campaign"><dir name="Edit"><file name="Form.php" hash="0e14b936f081327dde244c26a469000e"/><dir name="Tab"><file name="Cron.php" hash="56fda0e96489edcc8997e300fa178cd7"/><file name="Form.php" hash="cb7604985cd1303feef9fe25d8fb913d"/></dir><file name="Tabs.php" hash="f8edebce5ed52f7ab35869139b4c667e"/></dir><file name="Edit.php" hash="70546433d72351a08f531ce8be2e6fab"/><dir name="Forms"><file name="AbandonedCart.php" hash="62eb3f76a11f7eb9e6ba7a9fb6297b8e"/><file name="Abstract.php" hash="cd21395d15097979bca2e0dc2c9e96fb"/><file name="CustomerBirthday.php" hash="0736553e8f248795610819d27eafa8f5"/><file name="WelcomeReminder.php" hash="447acd447bd6feb0b2bfd4b6c1c8899c"/><file name="WishlistReminder.php" hash="4d4dad5122fb58b06fde53cabd22eade"/><file name="WishlistStockAlert.php" hash="fb0d14c59f4e59cdf20a0c432f5fd18c"/></dir><file name="Grid.php" hash="a20cc4967161641384a92ea23da6c35c"/></dir><file name="Campaign.php" hash="31acd1b97010281ba507e2438314cb40"/><dir name="Form"><dir name="Edit"><dir name="Renderer"><file name="Cron.php" hash="b1308ad78156cf7842462657278e9a06"/></dir></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="4d8d0581bb197db50fab9bbabcd06648"/></dir><dir name="Recipient"><file name="Grid.php" hash="251a9a0ad218d3e6cab91538851d056b"/></dir><file name="Recipient.php" hash="158f6054894b6e39c65244fa092315db"/></dir></dir><dir name="Helper"><file name="Connector.php" hash="5d3f3a03efea7b19641e499a3073959c"/><file name="Data.php" hash="2384b5b7c164683a8c3b19cce2f3d222"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Notification.php" hash="84824b81e47decbdea780ec9d111e021"/><file name="Observer.php" hash="1db19552a7f2327afc822576595a67af"/></dir><dir name="Campaign"><file name="AbandonedCart.php" hash="05e1e0c2e1e7ba559f20c3b739b2b67f"/><file name="Abstract.php" hash="68c0f52b903b7bab0b4c76ddbb766f91"/><file name="Cron.php" hash="ee928e3173d2440f15d31c42920c59e5"/><file name="CustomerBirthday.php" hash="597596fd4e15af747aa7777576cd77f5"/><file name="InscriptionAnniversary.php" hash="3763232d396c68130ce5a6c853c3f1fb"/><file name="Observer.php" hash="df021c67729661f7671cc661ad4bf064"/><file name="OrderSuccess.php" hash="370cc3c568c0c5ee97155c86d6b7dbd3"/><dir name="State"><file name="Abstract.php" hash="087d15fbda59f850e2b533f68489a4c1"/><file name="Production.php" hash="1bb53f8c2e6682a19293d8ecc1480c36"/><file name="Test.php" hash="717ab12665be109d56fe6904f3a8307c"/><file name="TestAllEmail.php" hash="0c29988515afe333f9776c23d128dc40"/></dir><file name="WelcomeReminder.php" hash="51c938c0a27f971b0cdaa97ba540bef0"/><file name="WishlistReminder.php" hash="cb327b1d2d79e23f0955315393e3842a"/><file name="WishlistStockAlert.php" hash="a0f92c9fefa5ca7ac02239ff37c6a137"/></dir><file name="Campaign.php" hash="0ad0040d5e2776c272feb367c56f47fb"/><dir name="Connector"><file name="Abstract.php" hash="deb770bb46596699e9bf02236766f115"/><file name="Magento.php" hash="f7f9c93867e30b3de67238a442f58802"/><file name="Void.php" hash="700c92b9f22e93276936be2e6590c0c4"/></dir><dir name="Cron"><file name="Observer.php" hash="0b390fadab4757f409154f7861ecc5d3"/></dir><file name="Cron.php" hash="17a79cd6d87e5d5916f1a496e4a42fbe"/><file name="Observer.php" hash="f236fd79b41f7bdc706fee4dd7518698"/><dir name="Resource"><dir name="Adminhtml"><dir name="Notification"><file name="Collection.php" hash="ccf2675e3a189397783bf3afbf9603fa"/></dir><file name="Notification.php" hash="3d2846f3e4565be43897f7b199ead3c7"/></dir><dir name="Campaign"><file name="Collection.php" hash="58d6a15feaea4b1d259d9629ed51c002"/></dir><file name="Campaign.php" hash="9329ebf56108dcb5877e029b03a2e519"/></dir><dir name="Source"><file name="Campaign.php" hash="9fb1452e0905b3640eeeeb2839c55100"/><file name="Connector.php" hash="f1798cd25e98eeb91a479f8a512021d8"/><file name="Mode.php" hash="7500ce6ca8f65dd4e56b999550891874"/><file name="Template.php" hash="778309a013d80d81e6ee56af63220587"/></dir><file name="Status.php" hash="b82c5333930574cecac7af32dfc6c8fb"/></dir><dir name="Test"><dir name="Model"><dir name="Campaign"><dir name="State"><file name="Config.php" hash="426f057a1fd887b1be84c6b2a68cabdc"/></dir></dir><file name="Campaign.php" hash="36a5a40b6223f3ea4c1c3d59e313dc0b"/><file name="Config.php" hash="2ae2f73eb660837c5c12d009e5bd0c07"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CampaignController.php" hash="3abbfa4172e2fdca385076d3e7f73c1a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ff400241d220bf092e7ae0afbab892e6"/><file name="config.xml" hash="43c015aefe4de015175c39c4e88cf2b9"/><file name="system.xml" hash="45e4b5547251980ec5b88d60f85376cc"/></dir><dir name="sql"><dir name="adfab_emailcampaign_setup"><file name="mysql4-install-0.1.0.php" hash="0ee583e15229b3f9fed7bba14e999bc0"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a0046605f23a83cd649d0efe79953384"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="9689646b2269be7e89e3538ba6d74fab"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6d92e62ef0878558d4b9e96d3dcb9c38"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="jquery-cron.css" hash="cb5a119e0ea73442fd20dda1ea210334"/></dir><dir name="js"><file name="emailcampaign.js" hash="93d4c1b7a32df8912d48ba3262550ece"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emailcampaign.xml" hash="e39336df778af319ce028dd061db41ca"/></dir><dir name="template"><dir name="emailcampaign"><dir name="notification"><file name="toolbar.phtml" hash="d34f7ad086c70032c9fb1486d9fb0ed1"/></dir><dir name="system"><dir name="email"><dir name="template"><file name="edit.phtml" hash="cf9dfae96dd8ba9fd62fed537dc46af5"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Adfab_EmailCampaign.xml" hash="2375f511dca0ba71d45dbefd68ab1bd1"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="8b7bb7916608dadeddd50952297df175"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="ee4435a37b05062c23c088c137c32cc0"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="54c7d1860ac81be27c3b007db25d794d"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="befaa0fa1f6fce97d8571407e94f7d9f"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="e3ff726605dd139054ffe6e7f91ab1d8"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="8edb549e7b5cf31718361d6d1885340e"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="bd615da4bfcf92fe312bcb366d5a3baf"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="00ecd662351382621701eb876e0aa504"/></dir><dir name="template"><dir name="email"><dir name="emailcampaign"><file name="abandonned_cart.html" hash="6fae375f1b5534ef0343b322d8cbfc34"/><file name="customer_birthday.html" hash="1066d6175781b49c44c50492c653aa9a"/><file name="inscription_anniversary.html" hash="732f536d7f6f2a31b9d8e68cfc039b4e"/><file name="order_success.html" hash="27f50eb0f7dc590b1a775aed6232f24c"/><file name="welcome_reminder.html" hash="e2217c9d1d165cff3eaf2027fcbd5766"/><file name="wishlist_reminder.html" hash="4212bbf8434860761bab9eafe171fb14"/><file name="wishlist_stock_alert.html" hash="5b68da7f6538a3e076bf7b836e12508b"/></dir></dir></dir></dir><dir name="fr_FR"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="04f84b4080c0eb56120a82a7215e1295"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="962c2f9b0b13302b5c910bd776a0e177"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="de370aaffa47c3bd003f92163546b826"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="32314f7b43a6431890c196f7ac0b9dea"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="6b1cd6e24298331c4a3e317e24695d1c"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="de057c50c853f81ed0f2bc10a7565f6a"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="f4071c638993793d001d6902d1cbca44"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="0aa97b28c6e1dfbcfa9816a5bd4a5766"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery.min.js" hash="941baad892cc00de1c928a0d5321ec3e"/><file name="jquery-cron.min.js" hash="7102f517bb2ffb5d6d5f4d9f4ccb5a1e"/></dir></dir></target></contents>
34
  <compatible/>
35
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
36
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Adfab_Emailcampaign</name>
4
+ <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/AFL-3.0">AFL</license>
7
  <channel>community</channel>
20
  - Registration anniversary&#xD;
21
  - Wishlist reminder&#xD;
22
  - Wishlist stock alert</description>
23
+ <notes>This version includes :&#xD;
24
+ - A message on the admin dashboard on first launch (only) to confirm you that the module has been correctly installed&#xD;
25
+ - New templates appear for the mails</notes>
 
 
 
 
26
  <authors><author><name>Adfab</name><user>Connect</user><email>dev@adfab.fr</email></author><author><name>Arnaud</name><user>Hours</user><email>arnaud.hours@adfab.fr</email></author><author><name>Gr&#xE9;gory</name><user>Besson</user><email>gregory.besson@adfab.fr</email></author><author><name>Fabien</name><user>Logarinho</user><email>fabien.logarinho@adfab.fr</email></author></authors>
27
+ <date>2014-08-07</date>
28
+ <time>13:55:14</time>
29
+ <contents><target name="magecommunity"><dir name="Adfab"><dir name="Emailcampaign"><dir name="Block"><dir name="Adminhtml"><dir name="Campaign"><dir name="Edit"><file name="Form.php" hash="0e14b936f081327dde244c26a469000e"/><dir name="Tab"><file name="Cron.php" hash="56fda0e96489edcc8997e300fa178cd7"/><file name="Form.php" hash="d662b3d6b707466469948263e1309698"/></dir><file name="Tabs.php" hash="f8edebce5ed52f7ab35869139b4c667e"/></dir><file name="Edit.php" hash="70546433d72351a08f531ce8be2e6fab"/><dir name="Forms"><file name="AbandonedCart.php" hash="62eb3f76a11f7eb9e6ba7a9fb6297b8e"/><file name="Abstract.php" hash="cd21395d15097979bca2e0dc2c9e96fb"/><file name="CustomerBirthday.php" hash="0736553e8f248795610819d27eafa8f5"/><file name="WelcomeReminder.php" hash="447acd447bd6feb0b2bfd4b6c1c8899c"/><file name="WishlistReminder.php" hash="4d4dad5122fb58b06fde53cabd22eade"/><file name="WishlistStockAlert.php" hash="fb0d14c59f4e59cdf20a0c432f5fd18c"/></dir><file name="Grid.php" hash="a20cc4967161641384a92ea23da6c35c"/></dir><file name="Campaign.php" hash="31acd1b97010281ba507e2438314cb40"/><dir name="Form"><dir name="Edit"><dir name="Renderer"><file name="Cron.php" hash="b1308ad78156cf7842462657278e9a06"/></dir></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="4d8d0581bb197db50fab9bbabcd06648"/></dir><dir name="Recipient"><file name="Grid.php" hash="251a9a0ad218d3e6cab91538851d056b"/></dir><file name="Recipient.php" hash="158f6054894b6e39c65244fa092315db"/></dir></dir><dir name="Helper"><file name="Connector.php" hash="5d3f3a03efea7b19641e499a3073959c"/><file name="Data.php" hash="2384b5b7c164683a8c3b19cce2f3d222"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Notification.php" hash="84824b81e47decbdea780ec9d111e021"/><file name="Observer.php" hash="302ab66ac5018f6e7f5c9e45a7d09dde"/></dir><dir name="Campaign"><file name="AbandonedCart.php" hash="05e1e0c2e1e7ba559f20c3b739b2b67f"/><file name="Abstract.php" hash="68c0f52b903b7bab0b4c76ddbb766f91"/><file name="Cron.php" hash="ee928e3173d2440f15d31c42920c59e5"/><file name="CustomerBirthday.php" hash="597596fd4e15af747aa7777576cd77f5"/><file name="InscriptionAnniversary.php" hash="3763232d396c68130ce5a6c853c3f1fb"/><file name="Observer.php" hash="df021c67729661f7671cc661ad4bf064"/><file name="OrderSuccess.php" hash="370cc3c568c0c5ee97155c86d6b7dbd3"/><dir name="State"><file name="Abstract.php" hash="087d15fbda59f850e2b533f68489a4c1"/><file name="Production.php" hash="1bb53f8c2e6682a19293d8ecc1480c36"/><file name="Test.php" hash="717ab12665be109d56fe6904f3a8307c"/><file name="TestAllEmail.php" hash="0c29988515afe333f9776c23d128dc40"/></dir><file name="WelcomeReminder.php" hash="51c938c0a27f971b0cdaa97ba540bef0"/><file name="WishlistReminder.php" hash="cb327b1d2d79e23f0955315393e3842a"/><file name="WishlistStockAlert.php" hash="a0f92c9fefa5ca7ac02239ff37c6a137"/></dir><file name="Campaign.php" hash="0ad0040d5e2776c272feb367c56f47fb"/><dir name="Connector"><file name="Abstract.php" hash="deb770bb46596699e9bf02236766f115"/><file name="Magento.php" hash="f7f9c93867e30b3de67238a442f58802"/><file name="Void.php" hash="700c92b9f22e93276936be2e6590c0c4"/></dir><dir name="Cron"><file name="Observer.php" hash="0b390fadab4757f409154f7861ecc5d3"/></dir><file name="Cron.php" hash="17a79cd6d87e5d5916f1a496e4a42fbe"/><file name="Flag.php" hash="6e2afa0c37bfab846e2360095df2c226"/><file name="Observer.php" hash="f236fd79b41f7bdc706fee4dd7518698"/><dir name="Resource"><dir name="Adminhtml"><dir name="Notification"><file name="Collection.php" hash="ccf2675e3a189397783bf3afbf9603fa"/></dir><file name="Notification.php" hash="3d2846f3e4565be43897f7b199ead3c7"/></dir><dir name="Campaign"><file name="Collection.php" hash="58d6a15feaea4b1d259d9629ed51c002"/></dir><file name="Campaign.php" hash="9329ebf56108dcb5877e029b03a2e519"/></dir><dir name="Source"><file name="Campaign.php" hash="9fb1452e0905b3640eeeeb2839c55100"/><file name="Connector.php" hash="f1798cd25e98eeb91a479f8a512021d8"/><file name="Mode.php" hash="7500ce6ca8f65dd4e56b999550891874"/><file name="Template.php" hash="f11035d9ea946b16d1ea6fde33f2bead"/></dir><file name="Status.php" hash="b82c5333930574cecac7af32dfc6c8fb"/></dir><dir name="Test"><dir name="Model"><dir name="Campaign"><dir name="State"><file name="Config.php" hash="426f057a1fd887b1be84c6b2a68cabdc"/></dir></dir><file name="Campaign.php" hash="36a5a40b6223f3ea4c1c3d59e313dc0b"/><file name="Config.php" hash="2ae2f73eb660837c5c12d009e5bd0c07"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CampaignController.php" hash="3abbfa4172e2fdca385076d3e7f73c1a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ff400241d220bf092e7ae0afbab892e6"/><file name="config.xml" hash="43c015aefe4de015175c39c4e88cf2b9"/><file name="system.xml" hash="45e4b5547251980ec5b88d60f85376cc"/></dir><dir name="sql"><dir name="adfab_emailcampaign_setup"><file name="mysql4-install-0.1.0.php" hash="0ee583e15229b3f9fed7bba14e999bc0"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a0046605f23a83cd649d0efe79953384"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="9689646b2269be7e89e3538ba6d74fab"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6d92e62ef0878558d4b9e96d3dcb9c38"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="jquery-cron.css" hash="cb5a119e0ea73442fd20dda1ea210334"/></dir><dir name="js"><file name="emailcampaign.js" hash="93d4c1b7a32df8912d48ba3262550ece"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emailcampaign.xml" hash="e39336df778af319ce028dd061db41ca"/></dir><dir name="template"><dir name="emailcampaign"><dir name="notification"><file name="toolbar.phtml" hash="d34f7ad086c70032c9fb1486d9fb0ed1"/><file name="window.phtml" hash="9c9c48d9855cbe13efef37170c565162"/></dir><dir name="system"><dir name="email"><dir name="template"><file name="edit.phtml" hash="cf9dfae96dd8ba9fd62fed537dc46af5"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Adfab_EmailCampaign.xml" hash="2375f511dca0ba71d45dbefd68ab1bd1"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="8b7bb7916608dadeddd50952297df175"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="ee4435a37b05062c23c088c137c32cc0"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="54c7d1860ac81be27c3b007db25d794d"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="befaa0fa1f6fce97d8571407e94f7d9f"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="e3ff726605dd139054ffe6e7f91ab1d8"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="8edb549e7b5cf31718361d6d1885340e"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="bd615da4bfcf92fe312bcb366d5a3baf"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="00ecd662351382621701eb876e0aa504"/></dir><dir name="template"><dir name="email"><dir name="emailcampaign"><file name="abandoned_cart.html" hash="4aeba2686af64de18dc7889cc1ee7f08"/><file name="customer_birthday.html" hash="3ddc1e77440af5d55357117b4d668bf0"/><file name="inscription_anniversary.html" hash="adcee0bce9d9d53e72f5ab0e62c512e8"/><file name="order_success.html" hash="27f50eb0f7dc590b1a775aed6232f24c"/><file name="welcome_reminder.html" hash="71874766623132765a88de43e1405f5e"/><file name="wishlist_reminder.html" hash="741d80736b53325dbd9483559ce3576a"/><file name="wishlist_stock_alert.html" hash="d08af25d00badc73c60e018e9aef901a"/></dir></dir></dir></dir><dir name="fr_FR"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="04f84b4080c0eb56120a82a7215e1295"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="962c2f9b0b13302b5c910bd776a0e177"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="de370aaffa47c3bd003f92163546b826"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="32314f7b43a6431890c196f7ac0b9dea"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="6b1cd6e24298331c4a3e317e24695d1c"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="de057c50c853f81ed0f2bc10a7565f6a"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="f4071c638993793d001d6902d1cbca44"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="0aa97b28c6e1dfbcfa9816a5bd4a5766"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery.min.js" hash="941baad892cc00de1c928a0d5321ec3e"/><file name="jquery-cron.min.js" hash="7102f517bb2ffb5d6d5f4d9f4ccb5a1e"/></dir></dir></target></contents>
30
  <compatible/>
31
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
32
  </package>