strapi-plugin-magic-mail 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -12,6 +12,12 @@ furnished to do so, subject to the following conditions:
12
12
  The above copyright notice and this permission notice shall be included in all
13
13
  copies or substantial portions of the Software.
14
14
 
15
+ **ADDITIONAL CONDITION:**
16
+ The license validation system (including but not limited to license-guard.js,
17
+ license controller, and related API endpoints) must remain intact and functional.
18
+ Removing, bypassing, or disabling the license validation system is strictly
19
+ prohibited.
20
+
15
21
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
22
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
23
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
package/README.md CHANGED
@@ -27,16 +27,48 @@
27
27
  ## 📸 Screenshots
28
28
 
29
29
  ### Email Accounts Dashboard
30
- ![Email Accounts](pics/email-accounts-dashboard.png)
30
+ ![Email Accounts Dashboard](pics/EmailAccountDashboard.png)
31
31
  *Manage unlimited email accounts with live stats and real-time monitoring*
32
32
 
33
- ### Routing Rules
34
- ![Routing Rules](pics/routing-rules.png)
33
+ ### Add Email Account - Step 1
34
+ ![Add Account Step 1](pics/Emailaddccount1.png)
35
+ *Choose from 6 different email providers with OAuth 2.0 support*
36
+
37
+ ### Add Email Account - Step 2
38
+ ![Add Account Step 2](pics/emailaddaccount2.png)
39
+ *Configure SMTP settings or connect with OAuth*
40
+
41
+ ### Add Email Account - Step 3
42
+ ![Add Account Step 3](pics/emailaddaccount3.png)
43
+ *Complete setup with rate limits and test connection*
44
+
45
+ ### Email Templates
46
+ ![Email Templates](pics/Templates.png)
47
+ *Create and manage email templates with the visual designer*
48
+
49
+ ### Email Designer
50
+ ![Email Designer](pics/emailDesigner.png)
51
+ *Drag-and-drop email editor with real-time preview*
52
+
53
+ ### Template Version History
54
+ ![Version History](pics/emailVersionHistory.png)
55
+ *Track changes and restore previous template versions (ADVANCED+)*
56
+
57
+ ### Template Send Test
58
+ ![Send Test](pics/emailTemplateSendTest.png)
59
+ *Test your templates before sending to production*
60
+
61
+ ### Routing Rules & Templates
62
+ ![Routing Rules](pics/RoutingEmailTemplates.png)
35
63
  *Define intelligent routing rules based on email type, recipient, subject*
36
64
 
37
- ### Account Setup - OAuth
38
- ![OAuth Setup](pics/oauth-setup.png)
39
- *Connect Gmail, Microsoft 365, or Yahoo with secure OAuth 2.0*
65
+ ### Email Analytics
66
+ ![Email Analytics](pics/emailAnalytics.png)
67
+ *Track email performance with detailed analytics and statistics*
68
+
69
+ ### Code Integration
70
+ ![Code Snippet](pics/codesnippet.png)
71
+ *Simple API integration with your Strapi application*
40
72
 
41
73
  ---
42
74
 
@@ -1376,6 +1408,9 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
1376
1408
 
1377
1409
  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1378
1410
 
1411
+ **ADDITIONAL CONDITION:**
1412
+ The license validation system (including but not limited to license-guard.js, license controller, and related API endpoints) must remain intact and functional. Removing, bypassing, or disabling the license validation system is strictly prohibited.
1413
+
1379
1414
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1380
1415
 
1381
1416
  ---
@@ -1401,7 +1436,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1401
1436
  - 📖 [Documentation](https://github.com/Schero94/MagicMail#readme)
1402
1437
  - 🐛 [Report Issues](https://github.com/Schero94/MagicMail/issues)
1403
1438
  - 💡 [Feature Requests](https://github.com/Schero94/MagicMail/discussions)
1404
- - 📧 [Email Support](mailto:support@magicmail.dev)
1439
+
1405
1440
 
1406
1441
  ---
1407
1442
 
@@ -1411,7 +1446,6 @@ If MagicMail helps your project, please:
1411
1446
  - ⭐ Star the repo on [GitHub](https://github.com/Schero94/MagicMail)
1412
1447
  - 📢 Share with your team
1413
1448
  - 🐦 Tweet about it
1414
- - ☕ [Buy me a coffee](https://www.buymeacoffee.com/schero)
1415
1449
 
1416
1450
  ---
1417
1451
 
@@ -108,11 +108,12 @@ const STANDARD_EMAIL_TEMPLATE = {
108
108
  };
109
109
 
110
110
  // Dynamic import for Email Editor (500KB)
111
- const EmailEditor = lazy(() =>
112
- import('react-email-editor').then((module) => ({
113
- default: module.EmailEditor,
114
- }))
115
- );
111
+ const EmailEditor = lazy(async () => {
112
+ const module = await import('react-email-editor');
113
+ return {
114
+ default: module.default || module.EmailEditor,
115
+ };
116
+ });
116
117
 
117
118
  // Styled components
118
119
  const Container = styled.div`
@@ -5395,11 +5395,12 @@ const STANDARD_EMAIL_TEMPLATE = {
5395
5395
  },
5396
5396
  schemaVersion: 6
5397
5397
  };
5398
- const EmailEditor = lazy(
5399
- () => import("react-email-editor").then((module) => ({
5400
- default: module.EmailEditor
5401
- }))
5402
- );
5398
+ const EmailEditor = lazy(async () => {
5399
+ const module = await import("react-email-editor");
5400
+ return {
5401
+ default: module.default || module.EmailEditor
5402
+ };
5403
+ });
5403
5404
  const Container$1 = styled.div`
5404
5405
  min-height: 100vh;
5405
5406
  display: flex;
@@ -5422,11 +5422,12 @@ const STANDARD_EMAIL_TEMPLATE = {
5422
5422
  },
5423
5423
  schemaVersion: 6
5424
5424
  };
5425
- const EmailEditor = React.lazy(
5426
- () => import("react-email-editor").then((module2) => ({
5427
- default: module2.EmailEditor
5428
- }))
5429
- );
5425
+ const EmailEditor = React.lazy(async () => {
5426
+ const module2 = await import("react-email-editor");
5427
+ return {
5428
+ default: module2.default || module2.EmailEditor
5429
+ };
5430
+ });
5430
5431
  const Container$1 = styled__default.default.div`
5431
5432
  min-height: 100vh;
5432
5433
  display: flex;
@@ -25,7 +25,7 @@ const index = {
25
25
  id: `${pluginId}.plugin.name`,
26
26
  defaultMessage: "MagicMail"
27
27
  },
28
- Component: () => Promise.resolve().then(() => require("../_chunks/App-B-Gp4Vbr.js"))
28
+ Component: () => Promise.resolve().then(() => require("../_chunks/App-DgnyvH-r.js"))
29
29
  });
30
30
  app.createSettingSection(
31
31
  {
@@ -24,7 +24,7 @@ const index = {
24
24
  id: `${pluginId}.plugin.name`,
25
25
  defaultMessage: "MagicMail"
26
26
  },
27
- Component: () => import("../_chunks/App-BymMjoGM.mjs")
27
+ Component: () => import("../_chunks/App-BROmljEd.mjs")
28
28
  });
29
29
  app.createSettingSection(
30
30
  {
@@ -4776,7 +4776,7 @@ function requireOauth() {
4776
4776
  });
4777
4777
  return oauth;
4778
4778
  }
4779
- const version = "1.0.0";
4779
+ const version = "1.0.2";
4780
4780
  const require$$2 = {
4781
4781
  version
4782
4782
  };
@@ -4768,7 +4768,7 @@ function requireOauth() {
4768
4768
  });
4769
4769
  return oauth;
4770
4770
  }
4771
- const version = "1.0.0";
4771
+ const version = "1.0.2";
4772
4772
  const require$$2 = {
4773
4773
  version
4774
4774
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.1",
2
+ "version": "1.0.3",
3
3
  "keywords": [
4
4
  "strapi",
5
5
  "strapi-plugin",
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file