Coder Social home page Coder Social logo

e-mailpreview's Introduction

Hackathon EmailPreview

This extension enables the merchants and developers to preview mail templates from the backend with real data.

Facts

Description

This extension enables the merchants and developers to preview mail templates from the backend with real data.

Extending

Extending existing mail templates

If you introduce new variables into existing mail templates, you have to provide Magento with actual models (ie. orders, customers, ...).

You can do so by observing the hackathon_emailpreview_render_email_before event. You will be provided with:

  • templateType. Use the template type to decide if you have to modify the parameters for this type of template.
  • templateParams. This Varien_Object contains the parameters (ie. variables like orders, customers, ...) that will be passed to the mail template renderer.

Adding a customer with real data as a template parameter looks like this:

$templateParams = $observer->getEvent()->getData('templateParams');
$requestParams = $templateParams->getRequestParams();
$customerId = $requestParams['customerId'];
$customer = Mage::getModel('customer/customer')->load($customerId);
$templateParams->setCustomer($customer);

Requirements

  • PHP >= 5.2.0
  • Mage_Adminhtml

Compatibility

  • Magento CE >= 1.7.0.2 (only tested on this version)

Installation Instructions

  1. Install the extension by copying the files into your Magento root or by using a modman compatible tool (modman, Composer).
  2. Clear the cache, logout from the admin panel and then login again.

Uninstallation

  1. Remove the extension by removing the files.

Support

If you have any issues with this extension, open an issue on GitHub.

Contribution

Any contribution is highly appreciated. The best way to contribute code is to open a pull request on GitHub.

Developer

Matthias Zeis http://www.matthias-zeis.com
@mzeis

Marc Päpper http://www.lemundo.de @mpaepper

Tobias Hille

License

OSL - Open Software Licence 3.0

e-mailpreview's People

Contributors

mzeis avatar tobihille avatar daim2k5 avatar kalenjordan avatar

Watchers

Thomas Birke avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.