@memberjunction/communication-sendgrid 2.111.1 → 2.112.0
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseCommunicationProvider, CreateDraftParams, CreateDraftResult, ForwardMessageParams, ForwardMessageResult, GetMessagesParams, GetMessagesResult, MessageResult, ProcessedMessage, ReplyToMessageParams, ReplyToMessageResult } from
|
|
1
|
+
import { BaseCommunicationProvider, CreateDraftParams, CreateDraftResult, ForwardMessageParams, ForwardMessageResult, GetMessagesParams, GetMessagesResult, MessageResult, ProcessedMessage, ReplyToMessageParams, ReplyToMessageResult } from '@memberjunction/communication-types';
|
|
2
2
|
/**
|
|
3
3
|
* Implementation of the SendGrid provider for sending and receiving messages
|
|
4
4
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SendGridProvider.d.ts","sourceRoot":"","sources":["../src/SendGridProvider.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"SendGridProvider.d.ts","sourceRoot":"","sources":["../src/SendGridProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,EACb,gBAAgB,EAChB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,qCAAqC,CAAC;AAM7C;;GAEG;AACH,qBACa,gBAAiB,SAAQ,yBAAyB;IAC7D;;OAEG;IACU,iBAAiB,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,aAAa,CAAC;IA2EjF;;OAEG;IACU,WAAW,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAI/E;;OAEG;IACI,cAAc,CAAC,MAAM,EAAE,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAIlF;;OAEG;IACI,cAAc,CAAC,MAAM,EAAE,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAIlF;;OAEG;IACU,WAAW,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAOhF;AAED,wBAAgB,YAAY,SAE3B"}
|
package/dist/SendGridProvider.js
CHANGED
|
@@ -14,7 +14,7 @@ const communication_types_1 = require("@memberjunction/communication-types");
|
|
|
14
14
|
const global_1 = require("@memberjunction/global");
|
|
15
15
|
const mail_1 = __importDefault(require("@sendgrid/mail"));
|
|
16
16
|
const config_1 = require("./config");
|
|
17
|
-
const
|
|
17
|
+
const global_2 = require("@memberjunction/global");
|
|
18
18
|
/**
|
|
19
19
|
* Implementation of the SendGrid provider for sending and receiving messages
|
|
20
20
|
*/
|
|
@@ -30,7 +30,7 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
30
30
|
to: message.To,
|
|
31
31
|
from: {
|
|
32
32
|
email: from,
|
|
33
|
-
name: message.FromName
|
|
33
|
+
name: message.FromName,
|
|
34
34
|
},
|
|
35
35
|
cc: message.CCRecipients,
|
|
36
36
|
bcc: message.BCCRecipients,
|
|
@@ -39,16 +39,16 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
39
39
|
html: message.ProcessedHTMLBody,
|
|
40
40
|
trackingSettings: {
|
|
41
41
|
subscriptionTracking: {
|
|
42
|
-
enable: false
|
|
43
|
-
}
|
|
44
|
-
}
|
|
42
|
+
enable: false,
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
45
|
};
|
|
46
46
|
/*
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
47
|
+
* Should be ready to go - but needs SG testing.
|
|
48
|
+
if(message.Headers){
|
|
49
|
+
msg.headers = Object.fromEntries(Object.entries(message.Headers).map(([key, value]) => [`X-${key}`, value])) as Record<string, string>;
|
|
50
|
+
}
|
|
51
|
+
*/
|
|
52
52
|
if (message.SendAt) {
|
|
53
53
|
const time = message.SendAt.getTime();
|
|
54
54
|
const unitTime = Math.floor(time / 1000);
|
|
@@ -56,31 +56,34 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
56
56
|
}
|
|
57
57
|
try {
|
|
58
58
|
//not using await syntax here because we dont get a return value
|
|
59
|
-
return mail_1.default
|
|
59
|
+
return mail_1.default
|
|
60
|
+
.send(msg)
|
|
61
|
+
.then((result) => {
|
|
60
62
|
if (result && result.length > 0 && result[0].statusCode >= 200 && result[0].statusCode < 300) {
|
|
61
|
-
(0,
|
|
63
|
+
(0, global_2.LogStatus)(`Email sent to ${msg.to}: ${result[0].statusCode}`);
|
|
62
64
|
return {
|
|
63
65
|
Message: message,
|
|
64
66
|
Success: true,
|
|
65
|
-
Error: ''
|
|
67
|
+
Error: '',
|
|
66
68
|
};
|
|
67
69
|
}
|
|
68
70
|
else {
|
|
69
|
-
(0,
|
|
70
|
-
(0,
|
|
71
|
+
(0, global_2.LogError)(`Error sending email to ${msg.to}:`, undefined, result);
|
|
72
|
+
(0, global_2.LogError)(result[0].body);
|
|
71
73
|
return {
|
|
72
74
|
Message: message,
|
|
73
75
|
Success: false,
|
|
74
|
-
Error: result[0].toString()
|
|
76
|
+
Error: result[0].toString(),
|
|
75
77
|
};
|
|
76
78
|
}
|
|
77
|
-
})
|
|
78
|
-
(
|
|
79
|
-
(0,
|
|
79
|
+
})
|
|
80
|
+
.catch((error) => {
|
|
81
|
+
(0, global_2.LogError)(`Error sending email to ${msg.to}:`, undefined, error);
|
|
82
|
+
(0, global_2.LogError)(error?.response?.body);
|
|
80
83
|
return {
|
|
81
84
|
Message: message,
|
|
82
85
|
Success: false,
|
|
83
|
-
Error: error.message
|
|
86
|
+
Error: error.message,
|
|
84
87
|
};
|
|
85
88
|
});
|
|
86
89
|
}
|
|
@@ -88,7 +91,7 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
88
91
|
return {
|
|
89
92
|
Message: message,
|
|
90
93
|
Success: false,
|
|
91
|
-
Error: error.message
|
|
94
|
+
Error: error.message,
|
|
92
95
|
};
|
|
93
96
|
}
|
|
94
97
|
}
|
|
@@ -96,19 +99,19 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
96
99
|
* Fetches messages from the provider
|
|
97
100
|
*/
|
|
98
101
|
async GetMessages(params) {
|
|
99
|
-
throw new Error(
|
|
102
|
+
throw new Error('SendGridProvider does not support fetching messages');
|
|
100
103
|
}
|
|
101
104
|
/**
|
|
102
105
|
* Forwards a message to another client using the provider
|
|
103
106
|
*/
|
|
104
107
|
ForwardMessage(params) {
|
|
105
|
-
throw new Error(
|
|
108
|
+
throw new Error('SendGridProvider does not support forwarding messages');
|
|
106
109
|
}
|
|
107
110
|
/**
|
|
108
111
|
* Replies to a message using the provider
|
|
109
112
|
*/
|
|
110
113
|
ReplyToMessage(params) {
|
|
111
|
-
throw new Error(
|
|
114
|
+
throw new Error('SendGridProvider does not support replying to messages');
|
|
112
115
|
}
|
|
113
116
|
/**
|
|
114
117
|
* SendGrid does not support creating draft messages
|
|
@@ -116,7 +119,7 @@ let SendGridProvider = class SendGridProvider extends communication_types_1.Base
|
|
|
116
119
|
async CreateDraft(params) {
|
|
117
120
|
return {
|
|
118
121
|
Success: false,
|
|
119
|
-
ErrorMessage: 'SendGrid does not support creating draft messages. Drafts are only supported by email providers with mailbox access (Gmail, MS Graph).'
|
|
122
|
+
ErrorMessage: 'SendGrid does not support creating draft messages. Drafts are only supported by email providers with mailbox access (Gmail, MS Graph).',
|
|
120
123
|
};
|
|
121
124
|
}
|
|
122
125
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SendGridProvider.js","sourceRoot":"","sources":["../src/SendGridProvider.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"SendGridProvider.js","sourceRoot":"","sources":["../src/SendGridProvider.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6EAY6C;AAC7C,mDAAuD;AACvD,0DAA0D;AAC1D,qCAAqC;AACrC,mDAA6D;AAE7D;;GAEG;AAEI,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,+CAAyB;IAC7D;;OAEG;IACI,KAAK,CAAC,iBAAiB,CAAC,OAAyB;QACtD,MAAM,IAAI,GAAW,OAAO,CAAC,IAAI,CAAC;QAClC,uCAAuC;QACvC,cAAM,CAAC,SAAS,CAAC,kBAAS,CAAC,CAAC;QAC5B,MAAM,GAAG,GAAqB;YAC5B,EAAE,EAAE,OAAO,CAAC,EAAE;YACd,IAAI,EAAE;gBACJ,KAAK,EAAE,IAAI;gBACX,IAAI,EAAE,OAAO,CAAC,QAAQ;aACvB;YACD,EAAE,EAAE,OAAO,CAAC,YAAY;YACxB,GAAG,EAAE,OAAO,CAAC,aAAa;YAC1B,OAAO,EAAE,OAAO,CAAC,gBAAgB;YACjC,IAAI,EAAE,OAAO,CAAC,aAAa;YAC3B,IAAI,EAAE,OAAO,CAAC,iBAAiB;YAC/B,gBAAgB,EAAE;gBAChB,oBAAoB,EAAE;oBACpB,MAAM,EAAE,KAAK;iBACd;aACF;SACF,CAAC;QAEF;;;;;cAKM;QAEN,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;YACnB,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YACtC,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;YACzC,GAAG,CAAC,MAAM,GAAG,QAAQ,CAAC;QACxB,CAAC;QAED,IAAI,CAAC;YACH,gEAAgE;YAChE,OAAO,cAAM;iBACV,IAAI,CAAC,GAAG,CAAC;iBACT,IAAI,CAAC,CAAC,MAAmC,EAAE,EAAE;gBAC5C,IAAI,MAAM,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,UAAU,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,UAAU,GAAG,GAAG,EAAE,CAAC;oBAC7F,IAAA,kBAAS,EAAC,iBAAiB,GAAG,CAAC,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC,CAAC;oBAC9D,OAAO;wBACL,OAAO,EAAE,OAAO;wBAChB,OAAO,EAAE,IAAI;wBACb,KAAK,EAAE,EAAE;qBACV,CAAC;gBACJ,CAAC;qBAAM,CAAC;oBACN,IAAA,iBAAQ,EAAC,0BAA0B,GAAG,CAAC,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;oBACjE,IAAA,iBAAQ,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;oBACzB,OAAO;wBACL,OAAO,EAAE,OAAO;wBAChB,OAAO,EAAE,KAAK;wBACd,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;qBAC5B,CAAC;gBACJ,CAAC;YACH,CAAC,CAAC;iBACD,KAAK,CAAC,CAAC,KAAU,EAAE,EAAE;gBACpB,IAAA,iBAAQ,EAAC,0BAA0B,GAAG,CAAC,EAAE,GAAG,EAAE,SAAS,EAAE,KAAK,CAAC,CAAC;gBAChE,IAAA,iBAAQ,EAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;gBAChC,OAAO;oBACL,OAAO,EAAE,OAAO;oBAChB,OAAO,EAAE,KAAK;oBACd,KAAK,EAAE,KAAK,CAAC,OAAO;iBACrB,CAAC;YACJ,CAAC,CAAC,CAAC;QACP,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO;gBACL,OAAO,EAAE,OAAO;gBAChB,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,KAAK,CAAC,OAAO;aACrB,CAAC;QACJ,CAAC;IACH,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,WAAW,CAAC,MAAyB;QAChD,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;IACzE,CAAC;IAED;;OAEG;IACI,cAAc,CAAC,MAA4B;QAChD,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;IAC3E,CAAC;IAED;;OAEG;IACI,cAAc,CAAC,MAA4B;QAChD,MAAM,IAAI,KAAK,CAAC,wDAAwD,CAAC,CAAC;IAC5E,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,WAAW,CAAC,MAAyB;QAChD,OAAO;YACL,OAAO,EAAE,KAAK;YACd,YAAY,EACV,wIAAwI;SAC3I,CAAC;IACJ,CAAC;CACF,CAAA;AA9GY,4CAAgB;2BAAhB,gBAAgB;IAD5B,IAAA,sBAAa,EAAC,+CAAyB,EAAE,UAAU,CAAC;GACxC,gBAAgB,CA8G5B;AAED,SAAgB,YAAY;IAC1B,kEAAkE;AACpE,CAAC;AAFD,oCAEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/communication-sendgrid",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.112.0",
|
|
4
4
|
"description": "MemberJunction: SendGrid Provider for the MJ Communication Framework",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,10 +19,9 @@
|
|
|
19
19
|
"typescript": "^5.4.5"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@memberjunction/global": "2.
|
|
23
|
-
"@memberjunction/core": "2.
|
|
24
|
-
"@memberjunction/
|
|
25
|
-
"@memberjunction/communication-types": "2.111.1",
|
|
22
|
+
"@memberjunction/global": "2.112.0",
|
|
23
|
+
"@memberjunction/core-entities": "2.112.0",
|
|
24
|
+
"@memberjunction/communication-types": "2.112.0",
|
|
26
25
|
"@sendgrid/mail": "^8.1.3"
|
|
27
26
|
},
|
|
28
27
|
"repository": {
|