# Mail
**Repository Path**: baisim/Mail
## Basic Information
- **Project Name**: Mail
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-06-04
- **Last Updated**: 2024-06-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Mail
An Email client, reimagined in the WinUI style.
## Download
## Objective
We're striving to create a UWP Mail client for Windows.

## Roadmap
Discover our [upcoming features](Roadmap.md).
## Build
1. Clone the repository.
2. Add a `Secret.cs` file in the `build` folder (see below).
3. Open the Mail.sln file with Visual Studio.
4. 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
5. Compile the solution.
In the `build` folder, generate a `Secret.cs` file and embed the following code:
```csharp
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.
## Contribution
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.