Version Notes
- Bug fixes regarding the dryrun and test emails functionality.
Download this release
Release Info
| Developer | Digital Pianism |
| Extension | DigitalPianism_Abandonedcarts |
| Version | 0.1.9 |
| Comparing to | |
| See all releases | |
Code changes from version 0.1.8 to 0.1.9
app/code/community/DigitalPianism/Abandonedcarts/Model/Observer.php
CHANGED
|
@@ -141,13 +141,10 @@ class DigitalPianism_Abandonedcarts_Model_Observer extends Mage_Core_Model_Abstr
|
|
| 141 |
}
|
| 142 |
}
|
| 143 |
|
| 144 |
-
public function sendSaleEmails()
|
| 145 |
{
|
| 146 |
try
|
| 147 |
-
{
|
| 148 |
-
if (Mage::helper('abandonedcarts')->getDryRun()) $dryrun = true;
|
| 149 |
-
if (Mage::helper('abandonedcarts')->getTestEmail()) $testemail = Mage::helper('abandonedcarts')->getTestEmail();
|
| 150 |
-
|
| 151 |
// Get the transactional email template
|
| 152 |
$templateId = Mage::getStoreConfig('abandonedcartsconfig/options/email_template_sale');
|
| 153 |
// Get the sender
|
|
@@ -213,13 +210,10 @@ class DigitalPianism_Abandonedcarts_Model_Observer extends Mage_Core_Model_Abstr
|
|
| 213 |
}
|
| 214 |
}
|
| 215 |
|
| 216 |
-
public function sendEmails()
|
| 217 |
{
|
| 218 |
try
|
| 219 |
-
{
|
| 220 |
-
if (Mage::helper('abandonedcarts')->getDryRun()) $dryrun = true;
|
| 221 |
-
if (Mage::helper('abandonedcarts')->getTestEmail()) $testemail = Mage::helper('abandonedcarts')->getTestEmail();
|
| 222 |
-
|
| 223 |
// Get the transactional email template
|
| 224 |
$templateId = Mage::getStoreConfig('abandonedcartsconfig/options/email_template');
|
| 225 |
// Get the sender
|
|
@@ -294,6 +288,8 @@ class DigitalPianism_Abandonedcarts_Model_Observer extends Mage_Core_Model_Abstr
|
|
| 294 |
{
|
| 295 |
try
|
| 296 |
{
|
|
|
|
|
|
|
| 297 |
if (Mage::helper('abandonedcarts')->isSaleEnabled())
|
| 298 |
{
|
| 299 |
$this->setToday();
|
|
@@ -375,7 +371,7 @@ class DigitalPianism_Abandonedcarts_Model_Observer extends Mage_Core_Model_Abstr
|
|
| 375 |
Mage::getSingleton('core/resource_iterator')->walk($collection->getSelect(), array(array($this, 'generateSaleRecipients')));
|
| 376 |
|
| 377 |
// Send the emails
|
| 378 |
-
$this->sendSaleEmails();
|
| 379 |
}
|
| 380 |
}
|
| 381 |
}
|
|
@@ -482,6 +478,9 @@ class DigitalPianism_Abandonedcarts_Model_Observer extends Mage_Core_Model_Abstr
|
|
| 482 |
// Call iterator walk method with collection query string and callback method as parameters
|
| 483 |
// Has to be used to handle massive collection instead of foreach
|
| 484 |
Mage::getSingleton('core/resource_iterator')->walk($collection->getSelect(), array(array($this, 'generateRecipients')));
|
|
|
|
|
|
|
|
|
|
| 485 |
}
|
| 486 |
}
|
| 487 |
}
|
| 141 |
}
|
| 142 |
}
|
| 143 |
|
| 144 |
+
public function sendSaleEmails($dryrun,$testemail)
|
| 145 |
{
|
| 146 |
try
|
| 147 |
+
{
|
|
|
|
|
|
|
|
|
|
| 148 |
// Get the transactional email template
|
| 149 |
$templateId = Mage::getStoreConfig('abandonedcartsconfig/options/email_template_sale');
|
| 150 |
// Get the sender
|
| 210 |
}
|
| 211 |
}
|
| 212 |
|
| 213 |
+
public function sendEmails($dryrun,$testemail)
|
| 214 |
{
|
| 215 |
try
|
| 216 |
+
{
|
|
|
|
|
|
|
|
|
|
| 217 |
// Get the transactional email template
|
| 218 |
$templateId = Mage::getStoreConfig('abandonedcartsconfig/options/email_template');
|
| 219 |
// Get the sender
|
| 288 |
{
|
| 289 |
try
|
| 290 |
{
|
| 291 |
+
if (Mage::helper('abandonedcarts')->getDryRun()) $dryrun = true;
|
| 292 |
+
if (Mage::helper('abandonedcarts')->getTestEmail()) $testemail = Mage::helper('abandonedcarts')->getTestEmail();
|
| 293 |
if (Mage::helper('abandonedcarts')->isSaleEnabled())
|
| 294 |
{
|
| 295 |
$this->setToday();
|
| 371 |
Mage::getSingleton('core/resource_iterator')->walk($collection->getSelect(), array(array($this, 'generateSaleRecipients')));
|
| 372 |
|
| 373 |
// Send the emails
|
| 374 |
+
$this->sendSaleEmails($dryrun,$testemail);
|
| 375 |
}
|
| 376 |
}
|
| 377 |
}
|
| 478 |
// Call iterator walk method with collection query string and callback method as parameters
|
| 479 |
// Has to be used to handle massive collection instead of foreach
|
| 480 |
Mage::getSingleton('core/resource_iterator')->walk($collection->getSelect(), array(array($this, 'generateRecipients')));
|
| 481 |
+
|
| 482 |
+
// Send the emails
|
| 483 |
+
$this->sendEmails($dryrun,$testemail);
|
| 484 |
}
|
| 485 |
}
|
| 486 |
}
|
app/code/community/DigitalPianism/Abandonedcarts/etc/config.xml
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
<modules>
|
| 6 |
<DigitalPianism_Abandonedcarts>
|
| 7 |
-
<version>0.1.
|
| 8 |
</DigitalPianism_Abandonedcarts>
|
| 9 |
</modules>
|
| 10 |
|
| 4 |
|
| 5 |
<modules>
|
| 6 |
<DigitalPianism_Abandonedcarts>
|
| 7 |
+
<version>0.1.9</version>
|
| 8 |
</DigitalPianism_Abandonedcarts>
|
| 9 |
</modules>
|
| 10 |
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_Abandonedcarts</name>
|
| 4 |
-
<version>0.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,11 +10,11 @@
|
|
| 10 |
<description>This extension allows store managers to automatically notice customers with abandoned carts after a customizable number of days via email.
|
| 11 |

|
| 12 |
Another email can also be sent if one of the abandoned products goes on sale.</description>
|
| 13 |
-
<notes>-
|
| 14 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 15 |
-
<date>2014-12-
|
| 16 |
-
<time>
|
| 17 |
-
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="Abandonedcarts"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="a27ec4c5bc4cb4e954ebdfebc71cbfd2"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c76d4abfe24cdad55badea279e13a9a1"/></dir><dir name="Model"><file name="Observer.php" hash="
|
| 18 |
<compatible/>
|
| 19 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 20 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_Abandonedcarts</name>
|
| 4 |
+
<version>0.1.9</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>This extension allows store managers to automatically notice customers with abandoned carts after a customizable number of days via email.
|
| 11 |

|
| 12 |
Another email can also be sent if one of the abandoned products goes on sale.</description>
|
| 13 |
+
<notes>- Bug fixes regarding the dryrun and test emails functionality.</notes>
|
| 14 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 15 |
+
<date>2014-12-10</date>
|
| 16 |
+
<time>15:45:39</time>
|
| 17 |
+
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="Abandonedcarts"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="a27ec4c5bc4cb4e954ebdfebc71cbfd2"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c76d4abfe24cdad55badea279e13a9a1"/></dir><dir name="Model"><file name="Observer.php" hash="2b95b8b206d0601345c273fa4c93b1c0"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AbandonedcartsController.php" hash="dc840a6de8c229175000df65b0d85289"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ddca513c0ed7e034c476f3e026ceda8"/><file name="config.xml" hash="d4461dc9df9ede72b0a79d776299a53d"/><file name="system.xml" hash="793efac0feb3c123a1c8869b21f302f1"/></dir><dir name="sql"><dir name="abandonedcarts_setup"><file name="install-0.0.1.php" hash="851338e4a710b5d94fead688b065f4b5"/><file name="upgrade-0.0.1-0.0.2.php" hash="0227c009e49b97bcf3f34f84c49f0927"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DigitalPianism_Abandonedcarts.xml" hash="8a7657855486c68d548db4ba48e083d2"/></dir></target><target name="magelocale"><dir name="en_US"><file name="DigitalPianism_AbandonedCarts.csv" hash="4e17b6cae58dd1cdcd43b1113e2e09f4"/><dir name="template"><dir name="email"><dir name="digitalpianism"><file name="sales_abandonedcarts.html" hash="30565f91c47913465fd184a214c14b23"/><file name="sales_abandonedcarts_sale.html" hash="3cdee557727cb0166741062e5fdcf06f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="digitalpianism"><dir name="abandonedcarts"><dir name="system"><dir name="config"><file name="button.phtml" hash="8f7e673ea52cd81b616cac01b1022990"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
| 18 |
<compatible/>
|
| 19 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 20 |
</package>
|
