You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Include a concise explanation about the Tech Stack employed.
33
+
34
+
## 📝 Project Summary
35
+
36
+
-[.github](.github): GitHub workflows for CI/CD automation.
37
+
-[licenses](licenses): This is where you can find all licenses for packages/libraries I have taken inspiration/code from.
38
+
-[src/MailEase](src/MailEase): Core functionality and business logic of the MailEase application.
39
+
-[src/MailEase/Providers](src/MailEase/Providers): Implementations of various email providers.
40
+
-[src/MailEase/Providers/Amazon](src/MailEase/Providers/Amazon): Integration with Amazon SES for sending emails.
41
+
-[src/MailEase/Providers/Infobip](src/MailEase/Providers/Infobip): Integration with Infobip for sending emails.
42
+
-[src/MailEase/Providers/Mailgun](src/MailEase/Providers/Mailgun): Integration with Mailgun for email delivery (WIP, and untested).
43
+
-[src/MailEase/Providers/Mailtrap](src/MailEase/Providers/Mailtrap): Integration with Mailtrap for email sending, testing and debugging.
44
+
-[src/MailEase/Providers/Microsoft](src/MailEase/Providers/Microsoft): Integration with Microsoft Azure Communication Services Email.
45
+
-[src/MailEase/Providers/SendGrid](src/MailEase/Providers/SendGrid): Integration with SendGrid for email delivery.
46
+
-[src/MailEase/Providers/Smtp](src/MailEase/Providers/Smtp): Integration with SMTP servers for email sending.
47
+
48
+
Note: The summary provided is based on the assumption of the project's structure and the directory names. The actual functionalities/components may vary.
49
+
50
+
## ⚙️ Setting Up (WIP)
51
+
52
+
#### WIP
53
+
54
+
- WIP
55
+
56
+
## 🚀 Run Locally (WIP)
57
+
1.Clone the MailEase repository:
58
+
```sh
59
+
git clone https://github.com/Eiromplays/MailEase
60
+
```
61
+
62
+
## 🙌 Contributors
63
+
64
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
65
+
<!-- prettier-ignore-start -->
66
+
<!-- markdownlint-disable -->
67
+
68
+
<!-- markdownlint-restore -->
69
+
<!-- prettier-ignore-end -->
70
+
71
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
72
+
73
+
## 📄 License
74
+
75
+
This project is licensed under the **MIT License** - see the [**MIT License**](https://github.com/Eiromplays/MailEase/blob/main/LICENSE) file for details.
Copy file name to clipboardExpand all lines: src/MailEase/Providers/Amazon/AWSSDKUtils.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
-
// Original source code: https://github.com/aloneguid/stowage/blob/master/src/Stowage/Impl/Amazon/AWSSDKUtils.cs
1
+
/*
2
+
This file contains code derived from Stowage (https://github.com/aloneguid/stowage/blob/3b83e2af3925def45763a6ca052ae3f54a65cd55/src/Stowage/Impl/Amazon/AWSSDKUtils.cs),
3
+
under the Apache 2.0 license. See the 'licenses' directory for full license details.
Copy file name to clipboardExpand all lines: src/MailEase/Providers/Amazon/CredentialFileParser.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
-
// Original source code: https://github.com/aloneguid/stowage/blob/master/src/Stowage/Impl/Amazon/CredentialFileParser.cs
1
+
/*
2
+
This file contains code derived from Stowage (https://github.com/aloneguid/stowage/blob/3b83e2af3925def45763a6ca052ae3f54a65cd55/src/Stowage/Impl/Amazon/CredentialFileParser.cs),
3
+
under the Apache 2.0 license. See the 'licenses' directory for full license details.
Copy file name to clipboardExpand all lines: src/MailEase/Providers/Amazon/SesAuthHandler.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
-
// Original source code: https://github.com/aloneguid/stowage/blob/master/src/Stowage/Impl/Amazon/S3AuthHandler.cs
1
+
/*
2
+
This file contains code derived from Stowage (https://github.com/aloneguid/stowage/blob/3b83e2af3925def45763a6ca052ae3f54a65cd55/src/Stowage/Impl/Amazon/S3AuthHandler.cs),
3
+
under the Apache 2.0 license. See the 'licenses' directory for full license details.
Copy file name to clipboardExpand all lines: src/MailEase/Providers/Microsoft/ConnectionString.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
-
// Original source code: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/src/Shared/ConnectionString.cs
1
+
/*
2
+
This file contains code derived from azure-sdk-for-net (https://github.com/Azure/azure-sdk-for-net/blob/8aa3763a564147c6e79f2a9530d0bc89b0198851/sdk/core/Azure.Core/src/Shared/ConnectionString.cs),
3
+
under the MIT license. See the 'licenses' directory for full license details.
Copy file name to clipboardExpand all lines: src/MailEase/Providers/Microsoft/EntraIdAuthHandler.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
-
// Original source code: https://github.com/aloneguid/stowage/blob/master/src/Stowage/Impl/Microsoft/EntraIdAuthHandler.cs
1
+
/*
2
+
This file contains code derived from Stowage (https://github.com/aloneguid/stowage/blob/3b83e2af3925def45763a6ca052ae3f54a65cd55/src/Stowage/Impl/Microsoft/EntraIdAuthHandler.cs),
3
+
under the Apache 2.0 license. See the 'licenses' directory for full license details.
0 commit comments