@eeplatform/core 1.8.7 → 1.8.8
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/.github/workflows/publish.yml +7 -9
- package/CHANGELOG.md +6 -0
- package/CLAUDE.md +106 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1831,7 +1831,7 @@ function useVerificationService() {
|
|
|
1831
1831
|
to: email,
|
|
1832
1832
|
subject: "Member Invite",
|
|
1833
1833
|
html: emailContent2,
|
|
1834
|
-
from: "EEPlatform"
|
|
1834
|
+
from: `"EEPlatform" <support@goweekdays.com>`
|
|
1835
1835
|
}).catch((error) => {
|
|
1836
1836
|
logger6.log({
|
|
1837
1837
|
level: "error",
|
|
@@ -1853,7 +1853,7 @@ function useVerificationService() {
|
|
|
1853
1853
|
to: email,
|
|
1854
1854
|
subject: "User Invite",
|
|
1855
1855
|
html: emailContent,
|
|
1856
|
-
from: "EEPlatform"
|
|
1856
|
+
from: `"EEPlatform" <support@goweekdays.com>`
|
|
1857
1857
|
}).catch((error) => {
|
|
1858
1858
|
logger6.log({
|
|
1859
1859
|
level: "error",
|
|
@@ -1887,7 +1887,7 @@ function useVerificationService() {
|
|
|
1887
1887
|
mailer.sendMail({
|
|
1888
1888
|
to: email,
|
|
1889
1889
|
subject: "Forget Password",
|
|
1890
|
-
from: "EEPlatform"
|
|
1890
|
+
from: `"EEPlatform" <support@goweekdays.com>`,
|
|
1891
1891
|
html: emailContent
|
|
1892
1892
|
}).catch((error) => {
|
|
1893
1893
|
logger6.log({
|
|
@@ -2082,7 +2082,7 @@ function useVerificationService() {
|
|
|
2082
2082
|
to: email,
|
|
2083
2083
|
subject: "Sign Up Verification",
|
|
2084
2084
|
html: emailContent,
|
|
2085
|
-
from: "EEPlatform"
|
|
2085
|
+
from: `"EEPlatform" <support@goweekdays.com>`
|
|
2086
2086
|
}).catch((error) => {
|
|
2087
2087
|
logger6.log({
|
|
2088
2088
|
level: "error",
|