What problem does it solve? Sending real emails during local development and testing is risky and slow. This Skill captures all outgoing SMTP traffic with Mailpit inside a .NET Aspire AppHost, so you can inspect rendered HTML, headers, and attachments without delivering a single message. ## Core Features & Use Cases - Aspire AppHost Setup: Add Mailpit as a container with SMTP and web UI endpoints, wired into your API project via environment configuration. - SMTP Email Sender: Implement an IEmailSender using MailKit with environment-aware settings for development and production. - Integration Testing: Use a Mailpit API client and Aspire test fixture to assert emails are sent, wait for async delivery, and verify content like password reset links. - Use Case: While building a signup flow, run integration tests that trigger registration, then assert via the Mailpit API that exactly one welcome email with the correct subject and HTML body was captured. ## Quick Start Set up Mailpit in my Aspire AppHost and write an integration test that verifies the signup flow sends a welcome email.