sk2andy / emailBuilder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

emailBuilder

this is a small project to create email html in C# .NET (core)

Components

you can use these components or build your own ones by deriving from IMailComponent

  • TitleComponent
  • TextComponent
  • RowComponent
  • ColumnComponent
  • SeparatorComponent
  • ImageComponent
  • ButtonComponent

How to use

Clone git repo or add Nuget package

start with using the MailBuilder like this:

var mailBuilder = new MailBuilder
{
    new RowComponent {new TitleComponent("Your Title", new Uri("your title image"))},
    new RowComponent
    {
        new ColumnComponent(4) {new TextComponent("some text")},
        new ColumnComponent(8) {new TextComponent("some other text")}
    }
}

and when you added all your stuff simply run mailbuilder.Build() to get the html content string for your email

About

License:MIT License


Languages

Language:HTML 67.8%Language:C# 32.2%