@ossy/email 1.3.1 → 1.3.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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.3.3 (2026-05-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **resources:** export ResourcesQueries from package index ([3ebc66e](https://github.com/ossy-se/ossy/commit/3ebc66e00313881659285ebb9c90cb753881d4ab))
12
+
13
+
14
+
15
+
16
+
17
+ ## 1.3.2 (2026-05-30)
18
+
19
+ **Note:** Version bump only for package @ossy/email
20
+
21
+
22
+
23
+
24
+
6
25
  ## 1.3.1 (2026-05-30)
7
26
 
8
27
  **Note:** Version bump only for package @ossy/email
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ossy/email",
3
3
  "private": false,
4
- "version": "1.3.1",
4
+ "version": "1.3.3",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "module": "./src/index.js",
@@ -19,5 +19,5 @@
19
19
  "react": "*",
20
20
  "react-dom": "*"
21
21
  },
22
- "gitHead": "d5b71d16ec56c819401c7a74f95d12b2347ca3c4"
22
+ "gitHead": "afdf2cc378dd2e7cbb63680f04386e4ad260ed2d"
23
23
  }
@@ -26,6 +26,15 @@ export async function connect({ env }) {
26
26
  })
27
27
 
28
28
  function send({ to, from, subject, html, text }) {
29
+ if (env.BUILD_ENVIRONMENT === 'local') {
30
+ console.log('\n-----------YOU GOT MAIL-----------')
31
+ console.log(`To: ${to}`)
32
+ console.log(`From: ${from}`)
33
+ console.log(`Subject: ${subject}`)
34
+ console.log(text || html)
35
+ console.log('----------------------------------\n')
36
+ return
37
+ }
29
38
  return ses.send(new SendEmailCommand({
30
39
  Destination: { ToAddresses: [to] },
31
40
  Message: {