Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Email Template Design with Bootstrap [closed]

I have to create a responsive email template design. I have been designing for a while, but never had a chance to create email templates.

Can I use Bootstrap to create email templates, just like I would using a normal web-page with containers, rows and columns?

If not, are there any specific tutorials, templates or considerations that I need to keep in mind?

like image 432
Muhammad Hasham Avatar asked Nov 13 '15 06:11

Muhammad Hasham


2 Answers

When u create an email Template, you must use inline styles with the template. Go through the following link. I think this will help you.

http://webdesign.tutsplus.com/articles/build-an-html-email-template-from-scratch--webdesign-12770

http://webdesign.tutsplus.com/tutorials/creating-a-future-proof-responsive-email-without-media-queries--cms-23919

like image 159
asp Avatar answered Oct 14 '22 06:10

asp


I would not recommend using any 3rd party CSS framework as you will have to load the entire CSS file which is not supported by some of the Email Clients.

Rather you can use the table system in vanilla HTML along with the use of frameworks like SASS or LESS which will compile into CSS that you can add up in the DOM itself.

like image 32
Abhay Pai Avatar answered Oct 14 '22 08:10

Abhay Pai