What problem does it solve? Email HTML renders inconsistently across clients like Outlook, Gmail, and Apple Mail, forcing developers to write fragile table-based layouts with inline styles by hand. This Skill provides a complete pattern for building responsive emails with MJML compiled through Mjml.Net in .NET applications. ## Core Features & Use Cases - MJML Template Structure: Shared layout templates with header, footer, and content injection, plus per-email content templates using {{Variable}} placeholders. - Template Renderer: A C# IMjmlTemplateRenderer that loads embedded .mjml resources, substitutes variables via regex, and compiles to cross-client HTML with Mjml.Net. - Composer Pattern: Strongly-typed email composers using value objects (EmailAddress, PersonName, AbsoluteUri) to separate rendering from message composition. - Use Case: Build a user invitation email by defining UserSignupInvitation.mjml, embedding it as a resource, and calling ComposeSignupInvitationAsync to produce a responsive HTML email with an admin preview endpoint for development. ## Quick Start Ask the AI to create an MJML email template with a shared layout and a .NET renderer using Mjml.Net for a password reset email.