├── .gitignore ├── README.md ├── app ├── code │ └── community │ │ └── Hackathon │ │ └── ResponsiveEmail │ │ ├── Block │ │ └── Order │ │ │ └── Items.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ └── Email │ │ │ ├── Template.php │ │ │ └── Template │ │ │ └── Abstract.php │ │ └── etc │ │ ├── config.xml │ │ └── system.xml ├── design │ └── frontend │ │ └── base │ │ └── default │ │ └── template │ │ └── responsive_email │ │ └── items.phtml ├── etc │ └── modules │ │ └── Hackathon_ResponsiveEmail.xml └── locale │ └── en_US │ └── template │ └── email │ └── responsive_email │ ├── basic │ ├── account_new.html │ └── sales │ │ └── order_new.html │ └── ink │ └── account_new.html ├── lib └── TijsVerkoyen │ └── CssToInlineStyles.php ├── modman └── skin └── frontend └── base └── default ├── config.rb ├── css └── responsive_email │ ├── basic-media-query.css │ ├── basic.css │ ├── custom.css │ └── ink.css └── sass └── responsive_email └── basic.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/Block/Order/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/Block/Order/Items.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/Model/Email/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/Model/Email/Template.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/Model/Email/Template/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/Model/Email/Template/Abstract.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/ResponsiveEmail/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/code/community/Hackathon/ResponsiveEmail/etc/system.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/responsive_email/items.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/design/frontend/base/default/template/responsive_email/items.phtml -------------------------------------------------------------------------------- /app/etc/modules/Hackathon_ResponsiveEmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/etc/modules/Hackathon_ResponsiveEmail.xml -------------------------------------------------------------------------------- /app/locale/en_US/template/email/responsive_email/basic/account_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/locale/en_US/template/email/responsive_email/basic/account_new.html -------------------------------------------------------------------------------- /app/locale/en_US/template/email/responsive_email/basic/sales/order_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/locale/en_US/template/email/responsive_email/basic/sales/order_new.html -------------------------------------------------------------------------------- /app/locale/en_US/template/email/responsive_email/ink/account_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/app/locale/en_US/template/email/responsive_email/ink/account_new.html -------------------------------------------------------------------------------- /lib/TijsVerkoyen/CssToInlineStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/lib/TijsVerkoyen/CssToInlineStyles.php -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/modman -------------------------------------------------------------------------------- /skin/frontend/base/default/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/config.rb -------------------------------------------------------------------------------- /skin/frontend/base/default/css/responsive_email/basic-media-query.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/css/responsive_email/basic-media-query.css -------------------------------------------------------------------------------- /skin/frontend/base/default/css/responsive_email/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/css/responsive_email/basic.css -------------------------------------------------------------------------------- /skin/frontend/base/default/css/responsive_email/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/css/responsive_email/custom.css -------------------------------------------------------------------------------- /skin/frontend/base/default/css/responsive_email/ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/css/responsive_email/ink.css -------------------------------------------------------------------------------- /skin/frontend/base/default/sass/responsive_email/basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/Responsive-Email-Templates-with-CSS-Inliner/HEAD/skin/frontend/base/default/sass/responsive_email/basic.scss --------------------------------------------------------------------------------