-
Notifications
You must be signed in to change notification settings - Fork 142
Add Papercut SMTP to packages #998
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -46,6 +46,7 @@ This repository contains the source code for the Aspire Community Toolkit, a col | |||||
| | - **Learn More**: [`Hosting.SqlServer.Extensions`][sqlserver-ext-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.SqlServer.Extensions][sqlserver-ext-shields]][sqlserver-ext-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.SqlServer.Extensions][sqlserver-ext-shields-preview]][sqlserver-ext-nuget-preview] | An integration that contains some additional extensions for hosting SqlServer container. | | ||||||
| | - **Learn More**: [`Hosting.LavinMQ`][lavinmq-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.Hosting.LavinMQ][lavinmq-shields]][lavinmq-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.LavinMQ][lavinmq-shields-preview]][lavinmq-nuget-preview] | An Aspire hosting integration for [LavinMQ](https://www.lavinmq.com). | | ||||||
| | - **Learn More**: [`Hosting.MailPit`][mailpit-ext-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.Hosting.MailPit][mailpit-ext-shields]][mailpit-ext-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.MailPit][mailpit-ext-shields-preview]][mailpit-ext-nuget-preview] | An Aspire integration leveraging the [MailPit](https://mailpit.axllent.org/) container. | | ||||||
| | - **Learn More**: [`Hosting.PapercutSmtp`][papercutsmtp-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.Hosting.PapercutSmtp][papercutsmtp-shields]][papercutsmtp-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.PapercutSmtp][papercutsmtp-shields-preview]][papercutsmtp-nuget-preview] | An Aspire integration leveraging the [Papercut SMTP](https://github.com/ChangemakerStudios/Papercut-SMTP) container. | | ||||||
| | - **Learn More**: [`Hosting.k6`][k6-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.Hosting.k6][k6-shields]][k6-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.k6][k6-shields-preview]][k6-nuget-preview] | An Aspire integration leveraging the [Grafana k6](https://k6.io/) container. | | ||||||
| | - **Learn More**: [`Hosting.MySql.Extensions`][mysql-ext-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.MySql.Extensions][mysql-ext-shields]][mysql-ext-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.MySql.Extensions][mysql-ext-shields-preview]][mysql-ext-nuget-preview] | An integration that contains some additional extensions for hosting MySql container. | | ||||||
| | - **Learn More**: [`Hosting.MinIO`][minio-integration-docs] <br /> - Stable 📦: [![CommunityToolkit.Aspire.Hosting.Minio][minio-hosting-shields]][minio-hosting-nuget] <br /> - Preview 📦: [![CommunityToolkit.Aspire.Hosting.Minio][minio-hosting-shields-preview]][minio-hosting-nuget-preview] | An Aspire hosting integration to setup a [MinIO S3](https://min.io/) storage. | | ||||||
|
|
@@ -246,6 +247,11 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org) | |||||
| [mailpit-ext-nuget]: https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.MailPit/ | ||||||
| [mailpit-ext-shields-preview]: https://img.shields.io/nuget/vpre/CommunityToolkit.Aspire.Hosting.MailPit?label=nuget%20(preview) | ||||||
| [mailpit-ext-nuget-preview]: https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.MailPit/absoluteLatest | ||||||
| [papercutsmtp-integration-docs]: https://github.com/CommunityToolkit/Aspire/tree/main/src/CommunityToolkit.Aspire.Hosting.PapercutSmtp#readme | ||||||
|
||||||
| [papercutsmtp-integration-docs]: https://github.com/CommunityToolkit/Aspire/tree/main/src/CommunityToolkit.Aspire.Hosting.PapercutSmtp#readme | |
| [papercutsmtp-integration-docs]: https://learn.microsoft.com/dotnet/aspire/community-toolkit/hosting-papercutsmtp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@IEvangelist I don't have the technical capability to contribute to the aspire.dev repo. Is there a possibility to provide Markdown to be integrated by an existing contributor?
Copilot
AI
Nov 24, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The NuGet URL uses www.nuget.org while all other integrations consistently use nuget.org (without www). For consistency with the rest of the file, change to:
[papercutsmtp-nuget]: https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.PapercutSmtp/
| [papercutsmtp-nuget]: https://www.nuget.org/packages/CommunityToolkit.Aspire.Hosting.PapercutSmtp/ | |
| [papercutsmtp-nuget]: https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.PapercutSmtp/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line has excessive trailing whitespace before the pipe character (
|) separating the first and second columns. The spacing should match other entries in the table (approximately 23 spaces based on line 48 and 50). The current line appears to have significantly more spacing, breaking visual alignment in the markdown table.