├── .gitignore ├── LICENSE ├── README.md ├── ecommerce-1 ├── img │ ├── facebook-black.png │ ├── instagram-black.png │ ├── logo-black.png │ ├── t-shirt-1.png │ ├── t-shirt-2.png │ └── twitter-black.png └── index.html ├── ecommerce-2 ├── img │ ├── facebook-white.png │ ├── instagram-white.png │ ├── logo-white.png │ ├── mbp-13-space.png │ └── twitter-white.png └── index.html ├── logo.png ├── newsletter-1 ├── img │ ├── facebook-black.png │ ├── instagram-black.png │ ├── jefferson-santos-9SoCnyQmkzI-unsplash.jpg │ ├── juja-han-HU-uL54pfQI-unsplash.jpg │ ├── logo-black.png │ ├── simon-migaj-Yui5vfKHuzs-unsplash.jpg │ └── twitter-black.png └── index.html ├── newsletter-2 ├── img │ ├── image-1_4uTLQvKKDM.jpg │ ├── image-2_xrXaXBWvnF.jpg │ ├── image-3_Iln5CnmNRr.jpg │ ├── image-4_pfbvqZT6H5.png │ ├── image-5_fZXP7Ynf08.jpg │ ├── image-6_wsuhE80FqA.jpg │ └── image-7_CrXym8CtMl.jpg └── index.html ├── preview.gif ├── request-reset-password-1 ├── img │ ├── facebook-black.png │ ├── instagram-black.png │ ├── logo-black.png │ └── twitter-black.png └── index.html └── request-reset-password-2 ├── img ├── facebook-black.png ├── image-1_zG0nGXG3eY.jpg ├── image-2_iY8r501u0W.jpg ├── instagram-black.png ├── logo-black.png └── twitter-black.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019-present Anton Reshetov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

HTML Email Templates by MySigMail Card

5 |

6 | 7 |

8 |

9 | Website - https://mysigmail.com/card | Twitter - @mysigmail 10 |

11 | 12 | ## About MySigMail Card 13 | 14 | MySigMail Card is a free drag & drop builder helps users create email templates intuitively and very quickly. No need to register or create an account. 15 | 16 | **Features:** 17 | 18 | - 50+ pre-designed components in categories: Menu, Header, Content, Feature, Call to action, E-Commerce, Footer 19 | - Content editing in components 20 | - Uploading external images 21 | - Live preview 22 | - Project management 23 | - Support email clients: the templates have been tested to render across major email clients, with support on popular web, desktop and mobile platform 24 | 25 | **Support Email Clients:** 26 | 27 | - iOS Mail App 28 | - macOS Mail App 29 | - Android Mail Apps (Gmail / Outlook) 30 | - Browser Mail Apps 31 | - Outlook 2007-2019 32 | - Outlook.com 33 | - Office 365 34 | - AOL 35 | 36 | Feel free to use HTML templates as you want. 37 | If you liked HTML templates or builder please share it with your friends or mention us on your socials. 38 | -------------------------------------------------------------------------------- /ecommerce-1/img/facebook-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/facebook-black.png -------------------------------------------------------------------------------- /ecommerce-1/img/instagram-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/instagram-black.png -------------------------------------------------------------------------------- /ecommerce-1/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/logo-black.png -------------------------------------------------------------------------------- /ecommerce-1/img/t-shirt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/t-shirt-1.png -------------------------------------------------------------------------------- /ecommerce-1/img/t-shirt-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/t-shirt-2.png -------------------------------------------------------------------------------- /ecommerce-1/img/twitter-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-1/img/twitter-black.png -------------------------------------------------------------------------------- /ecommerce-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 162 | 172 | 173 | 174 | 175 | 176 | The short summary text that follows the subject line when viewing an email from the inbox. Also known as the Johnson Box or Preview text. 177 | 178 | 179 | 180 | 512 | 513 | 514 | 515 |
        516 |                                 517 |                    
518 | 519 | 520 | -------------------------------------------------------------------------------- /ecommerce-2/img/facebook-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-2/img/facebook-white.png -------------------------------------------------------------------------------- /ecommerce-2/img/instagram-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-2/img/instagram-white.png -------------------------------------------------------------------------------- /ecommerce-2/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-2/img/logo-white.png -------------------------------------------------------------------------------- /ecommerce-2/img/mbp-13-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-2/img/mbp-13-space.png -------------------------------------------------------------------------------- /ecommerce-2/img/twitter-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/ecommerce-2/img/twitter-white.png -------------------------------------------------------------------------------- /ecommerce-2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 162 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 398 | 399 | 400 | 401 |
        402 |                                 403 |                    
404 | 405 | 406 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/logo.png -------------------------------------------------------------------------------- /newsletter-1/img/facebook-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/facebook-black.png -------------------------------------------------------------------------------- /newsletter-1/img/instagram-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/instagram-black.png -------------------------------------------------------------------------------- /newsletter-1/img/jefferson-santos-9SoCnyQmkzI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/jefferson-santos-9SoCnyQmkzI-unsplash.jpg -------------------------------------------------------------------------------- /newsletter-1/img/juja-han-HU-uL54pfQI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/juja-han-HU-uL54pfQI-unsplash.jpg -------------------------------------------------------------------------------- /newsletter-1/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/logo-black.png -------------------------------------------------------------------------------- /newsletter-1/img/simon-migaj-Yui5vfKHuzs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/simon-migaj-Yui5vfKHuzs-unsplash.jpg -------------------------------------------------------------------------------- /newsletter-1/img/twitter-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-1/img/twitter-black.png -------------------------------------------------------------------------------- /newsletter-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 162 | 172 | 173 | 174 | 175 | 176 | The short summary text that follows the subject line when viewing an email from the inbox. Also known as the Johnson Box or Preview text. 177 | 178 | 179 | 180 | 454 | 455 | 456 | 457 |
        458 |                                 459 |                    
460 | 461 | 462 | -------------------------------------------------------------------------------- /newsletter-2/img/image-1_4uTLQvKKDM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-1_4uTLQvKKDM.jpg -------------------------------------------------------------------------------- /newsletter-2/img/image-2_xrXaXBWvnF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-2_xrXaXBWvnF.jpg -------------------------------------------------------------------------------- /newsletter-2/img/image-3_Iln5CnmNRr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-3_Iln5CnmNRr.jpg -------------------------------------------------------------------------------- /newsletter-2/img/image-4_pfbvqZT6H5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-4_pfbvqZT6H5.png -------------------------------------------------------------------------------- /newsletter-2/img/image-5_fZXP7Ynf08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-5_fZXP7Ynf08.jpg -------------------------------------------------------------------------------- /newsletter-2/img/image-6_wsuhE80FqA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-6_wsuhE80FqA.jpg -------------------------------------------------------------------------------- /newsletter-2/img/image-7_CrXym8CtMl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/newsletter-2/img/image-7_CrXym8CtMl.jpg -------------------------------------------------------------------------------- /newsletter-2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 167 | 177 | 178 | 179 | 180 | 181 | The short summary text that follows the subject line when viewing an email from the inbox. Also known as the Johnson Box or Preview text. 182 | 183 | 184 | 185 | 500 | 501 | 502 | 503 |
        504 |                                 505 |                    
506 | 507 | 508 | -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/preview.gif -------------------------------------------------------------------------------- /request-reset-password-1/img/facebook-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-1/img/facebook-black.png -------------------------------------------------------------------------------- /request-reset-password-1/img/instagram-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-1/img/instagram-black.png -------------------------------------------------------------------------------- /request-reset-password-1/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-1/img/logo-black.png -------------------------------------------------------------------------------- /request-reset-password-1/img/twitter-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-1/img/twitter-black.png -------------------------------------------------------------------------------- /request-reset-password-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 162 | 172 | 173 | 174 | 175 | 176 | The short summary text that follows the subject line when viewing an email from the inbox. Also known as the Johnson Box or Preview text. 177 | 178 | 179 | 180 | 353 | 354 | 355 | 356 |
        357 |                                 358 |                    
359 | 360 | 361 | -------------------------------------------------------------------------------- /request-reset-password-2/img/facebook-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/facebook-black.png -------------------------------------------------------------------------------- /request-reset-password-2/img/image-1_zG0nGXG3eY.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/image-1_zG0nGXG3eY.jpg -------------------------------------------------------------------------------- /request-reset-password-2/img/image-2_iY8r501u0W.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/image-2_iY8r501u0W.jpg -------------------------------------------------------------------------------- /request-reset-password-2/img/instagram-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/instagram-black.png -------------------------------------------------------------------------------- /request-reset-password-2/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/logo-black.png -------------------------------------------------------------------------------- /request-reset-password-2/img/twitter-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysigmail/html-email-templates/91d643e4b40ff1e6bf8bdab1469f3539659f1b6e/request-reset-password-2/img/twitter-black.png -------------------------------------------------------------------------------- /request-reset-password-2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 176 | 186 | 187 | 188 | 189 | 190 | The short summary text that follows the subject line when viewing an email from the inbox. Also known as the Johnson Box or Preview text. 191 | 192 | 193 | 194 | 473 | 474 | 475 | 476 |
        477 |                                 478 |                    
479 | 480 | 481 | --------------------------------------------------------------------------------