@chevre/domain 22.9.0-alpha.74 → 22.9.0-alpha.75
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.
|
@@ -121,7 +121,8 @@ function sendEmailMessage(params) {
|
|
|
121
121
|
content: [{ type: 'text/plain', value: msg.text }],
|
|
122
122
|
from: msg.from,
|
|
123
123
|
personalizations: [{ to: msg.to }],
|
|
124
|
-
subject: msg.subject
|
|
124
|
+
subject: msg.subject,
|
|
125
|
+
custom_args: msg.customArgs
|
|
125
126
|
},
|
|
126
127
|
method: 'POST',
|
|
127
128
|
url: '/v3/mail/send'
|
|
@@ -251,7 +252,8 @@ function notifyByEmail(params
|
|
|
251
252
|
content: [{ type: 'text/plain', value: msg.text }],
|
|
252
253
|
from: msg.from,
|
|
253
254
|
personalizations: [{ to: msg.to }],
|
|
254
|
-
subject: msg.subject
|
|
255
|
+
subject: msg.subject,
|
|
256
|
+
custom_args: msg.customArgs
|
|
255
257
|
},
|
|
256
258
|
method: 'POST',
|
|
257
259
|
url: '/v3/mail/send'
|
package/package.json
CHANGED