# Foundation for Emails 2 Migration Guide
- [What’s new?](https://github.com/zurb/foundation-emails/blob/master/migration.md#whats-new)
- [Overview](https://github.com/zurb/foundation-emails/blob/master/migration.md#overview)
- [HTML](https://github.com/zurb/foundation-emails/blob/master/migration.md#html)
- [CSS/Sass](https://github.com/zurb/foundation-emails/blob/master/migration.md#csssass)
- [Components](https://github.com/zurb/foundation-emails/blob/master/migration.md#components)
- [Grid](https://github.com/zurb/foundation-emails/blob/master/migration.md#grid)
- [Buttons](https://github.com/zurb/foundation-emails/blob/master/migration.md#buttons)
- [Callout](https://github.com/zurb/foundation-emails/blob/master/migration.md#panels-are-now-callouts)
- [Menu](https://github.com/zurb/foundation-emails/blob/master/migration.md#menu)
- [Dependencies](https://github.com/zurb/foundation-emails/blob/master/migration.md#dependencies)
#### This guide describes the changes required to migrate a Foundation for Emails template from version 1 (formerly Ink) to 2.
## What’s new?
- **Streamlined and updated responsive grid:** We’ve simplified the markup in the new version so it’s faster and easier to code. The new responsive grid in Emails 2 requires fewer tags and classes. It’s also now responsive on Android Native!
- **Inky templating language:** With Inky you can write less code and get more done. The Inky language gets you out of tables and into a simpler, more web-like, HTML.
- **Built with Sass:** Now faster than ever, you can easily make sweeping visual changes to your email that reflect your brand styles - all within one settings file.
- **ZURB Stack:** All kinds of task automation - [Panini](http://foundation.zurb.com/sites/docs/panini.html), our Handlebars templates, compiling Sass, BrowserSync, image compression, and auto inlining are built in to speed up your workflow.
## Overview
When migrating, the following items can be translated easily from 1 to 2:
- Boilerplate
- Visibility
- Typography
- Text helper classes
- Button class
- Container
- Panel
- Media Queries
Other areas may require more changes to work correctly including:
- Grid
- Sub-grid (now part of Grid)
What’s new that you might want to use:
- Menu - Horizontal
- Menu - Vertical
## HTML
With Foundation for Emails 2, confusing and tedious tables are a thing of the past. The new Inky markup will save you time and energy coding your emails. It looks like:
```
```
You can use it to create the grid structure, buttons, and other components. We’ll go into this in detail in the components section. We'll explain more in the [Grid section](https://github.com/zurb/foundation-emails/blob/master/migration.md#grid).
## CSS/Sass
Foundation for Emails 2 is available in a Sass version which let’s you quickly change common CSS values with some simple variables within the settings.
These are some CSS classes that are no longer needed for proper spacing:
- .wrapper
- .wrapper-last
- .text-pad
- .text-pad-left
- .text.pad-right
***
## Components
***
### Grid
Version 1
In the previous version, we needed extra tags to support a wrapper element. This used to control the gutter and margins of a column.
```
```
Version 2 (CSS version)
In F4E 2, we’ve eliminated another a tag in an effort to simplify your markup. Gutters are now directly applied to the column element itself. We still need to identify the last column with a last class, however we also need to identify the first column element with the first class.
```
```
Version 2 (Inky markup)
```
```
### Sub-grid is now a small grid
In an effort to unify the thinking across the Foundation family, we’ve removed the sub-columns and moved towards a fully functional small grid.
Version 1
```
```
Version 2 (CSS version)
```
```
Version 2 (Inky markup)
```
```
### Block Grid
The block grid has a minor syntax change with identifying the number of elements that are displayed in the row. We’ve moved to the convention of `.up-x`, instead of `.ex-up`.
Version 1
```
Thing 1
Thing 2
Thing 3
```
Version 2 (CSS version)
```
Thing 1
Thing 2
Thing 3
```
Version 2 (Inky markup)
```
Thing 1
Thing 2
Thing 3
```
### Offset Columns
Because we’ve eliminated the wrapper, offsets are now directly applied to the column itself.
Version 1
```
```
Version 2 (CSS version)
```
```
Version 2 (Inky markup)
```
```
## Buttons
In the previous version of F4E the text inside of the button was the only clickable element. In F4E 2, we’ve taken the hybrid approach of using padding and borders to increase the clickable area
Version 1
```
```
Version 2 (Inky markup)
```
```
The button markup has changed to make the touch targets better. Now the whole button is clickable. It requires more table markup but you should use Inky anyways which is much simpler.
## Panels are now Callouts
In an effort to unify the terminology across the Foundation family panels are now called callouts.
Version 1
```
```
Version 2 (Inky markup)
```
```
The menu component can be used to create a simple set of links comonly used in headers, for social icons or in footers. Adding the `.vertical` class will change the orientation.
## Dependencies
**CSS:**
- Text Editor
**Sass version:**
- Text Editor
- Git
- Node
To use the Sass version with the Inky markup language you'll want to insall the Foundation for Emails project template. You'll find the [installation instructions here](https://github.com/zurb/foundation-emails/tree/v2.0#getting-started).