An Email client, reimagined in the WinUI style.
We're striving to create a UWP Mail client for Windows.
Discover our upcoming features.
- Clone the repository.
- Add a
Secret.cs
file in thebuild
folder (see below). - Open the Mail.sln file with Visual Studio.
- Add
https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json
the link to Nuget source
More info
https://github.com/CommunityToolkit/Labs-Windows
- Compile the solution.
In the build
folder, generate a Secret.cs
file and embed the following code:
namespace Mail
{
internal class Secret
{
// Replace this with your unique AAD ClientId from Azure Active Directory.
// Azure Active Directory: https://github.com/DiskTools/Mail/tree/GraphAuth
public static readonly string AadClientId = "Your AAD ClientId";
}
}
Alternatively, you can find an example in our development-oriented chat group, such as a QQ group.
We encourage creating your own branch instead of directly developing and committing to the main branch. Once your code is polished and ready, submit a Pull Request. Your contribution will be merged into the main branch only after it has undergone a Code Review by other members of the team.