@builder6/email 3.0.8 → 3.0.10
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.
|
@@ -2,7 +2,7 @@ import { EmailService } from './email.service';
|
|
|
2
2
|
export declare class EmailController {
|
|
3
3
|
private readonly emailService;
|
|
4
4
|
constructor(emailService: EmailService);
|
|
5
|
-
sendEmail(from: string, to: string, subject: string, text: string, html: string): Promise<{
|
|
5
|
+
sendEmail(from: string, to: string, cc: string, bcc: string, subject: string, text: string, html: string): Promise<{
|
|
6
6
|
message: string;
|
|
7
7
|
error?: undefined;
|
|
8
8
|
} | {
|
|
@@ -21,10 +21,18 @@ let EmailController = class EmailController {
|
|
|
21
21
|
constructor(emailService) {
|
|
22
22
|
this.emailService = emailService;
|
|
23
23
|
}
|
|
24
|
-
async sendEmail(from, to, subject, text, html) {
|
|
24
|
+
async sendEmail(from, to, cc, bcc, subject, text, html) {
|
|
25
25
|
try {
|
|
26
|
-
await this.emailService.addEmailToQueue({
|
|
27
|
-
|
|
26
|
+
await this.emailService.addEmailToQueue({
|
|
27
|
+
from,
|
|
28
|
+
to,
|
|
29
|
+
cc,
|
|
30
|
+
bcc,
|
|
31
|
+
subject,
|
|
32
|
+
text,
|
|
33
|
+
html,
|
|
34
|
+
});
|
|
35
|
+
return { message: 'Email sent successfully' };
|
|
28
36
|
}
|
|
29
37
|
catch (error) {
|
|
30
38
|
console.error('Query error', error);
|
|
@@ -50,9 +58,9 @@ let EmailController = class EmailController {
|
|
|
50
58
|
html,
|
|
51
59
|
headers,
|
|
52
60
|
attachments,
|
|
53
|
-
mailComposer
|
|
61
|
+
mailComposer,
|
|
54
62
|
});
|
|
55
|
-
return { message: '
|
|
63
|
+
return { message: 'Email sent successfully' };
|
|
56
64
|
}
|
|
57
65
|
catch (error) {
|
|
58
66
|
console.error('Query error', error);
|
|
@@ -84,38 +92,41 @@ exports.EmailController = EmailController;
|
|
|
84
92
|
__decorate([
|
|
85
93
|
(0, common_1.Post)('send'),
|
|
86
94
|
(0, swagger_1.ApiOperation)({
|
|
87
|
-
summary: '
|
|
88
|
-
description: '
|
|
95
|
+
summary: 'Send mail',
|
|
96
|
+
description: 'Send mail by providing recipient email, subject, and content',
|
|
89
97
|
}),
|
|
90
98
|
(0, swagger_1.ApiBody)({
|
|
91
|
-
description: '
|
|
99
|
+
description: 'Parameters required to send mail',
|
|
92
100
|
schema: {
|
|
93
101
|
type: 'object',
|
|
94
102
|
properties: {
|
|
95
103
|
from: {
|
|
96
104
|
type: 'string',
|
|
97
105
|
example: 'example@example.com',
|
|
98
|
-
description: '接收邮件的邮箱地址',
|
|
99
106
|
},
|
|
100
107
|
to: {
|
|
101
108
|
type: 'string',
|
|
102
109
|
example: 'example@example.com',
|
|
103
|
-
|
|
110
|
+
},
|
|
111
|
+
cc: {
|
|
112
|
+
type: 'string',
|
|
113
|
+
example: 'example@example.com',
|
|
114
|
+
},
|
|
115
|
+
bcc: {
|
|
116
|
+
type: 'string',
|
|
117
|
+
example: 'example@example.com',
|
|
104
118
|
},
|
|
105
119
|
subject: {
|
|
106
120
|
type: 'string',
|
|
107
|
-
example: '
|
|
108
|
-
description: '邮件主题',
|
|
121
|
+
example: 'This is subject',
|
|
109
122
|
},
|
|
110
123
|
text: {
|
|
111
124
|
type: 'string',
|
|
112
|
-
example: '
|
|
113
|
-
description: '邮件的纯文本内容',
|
|
125
|
+
example: 'This is a test email',
|
|
114
126
|
},
|
|
115
127
|
html: {
|
|
116
128
|
type: 'string',
|
|
117
|
-
example: '<h1
|
|
118
|
-
description: '邮件的 HTML 格式内容',
|
|
129
|
+
example: '<h1>This is HTML content</h1>',
|
|
119
130
|
},
|
|
120
131
|
},
|
|
121
132
|
required: ['from', 'to', 'subject'],
|
|
@@ -123,21 +134,23 @@ __decorate([
|
|
|
123
134
|
}),
|
|
124
135
|
__param(0, (0, common_1.Body)('from')),
|
|
125
136
|
__param(1, (0, common_1.Body)('to')),
|
|
126
|
-
__param(2, (0, common_1.Body)('
|
|
127
|
-
__param(3, (0, common_1.Body)('
|
|
128
|
-
__param(4, (0, common_1.Body)('
|
|
137
|
+
__param(2, (0, common_1.Body)('cc')),
|
|
138
|
+
__param(3, (0, common_1.Body)('bcc')),
|
|
139
|
+
__param(4, (0, common_1.Body)('subject')),
|
|
140
|
+
__param(5, (0, common_1.Body)('text')),
|
|
141
|
+
__param(6, (0, common_1.Body)('html')),
|
|
129
142
|
__metadata("design:type", Function),
|
|
130
|
-
__metadata("design:paramtypes", [String, String, String, String, String]),
|
|
143
|
+
__metadata("design:paramtypes", [String, String, String, String, String, String, String]),
|
|
131
144
|
__metadata("design:returntype", Promise)
|
|
132
145
|
], EmailController.prototype, "sendEmail", null);
|
|
133
146
|
__decorate([
|
|
134
147
|
(0, common_1.Post)('sendMailToUsers'),
|
|
135
148
|
(0, swagger_1.ApiOperation)({
|
|
136
|
-
summary: '
|
|
137
|
-
description: '
|
|
149
|
+
summary: 'Send mail to multiple users',
|
|
150
|
+
description: 'Send mail by providing a list of recipient IDs, subject, and content',
|
|
138
151
|
}),
|
|
139
152
|
(0, swagger_1.ApiBody)({
|
|
140
|
-
description: '
|
|
153
|
+
description: 'Parameters required to send mail',
|
|
141
154
|
schema: {
|
|
142
155
|
type: 'object',
|
|
143
156
|
properties: {
|
|
@@ -149,7 +162,7 @@ __decorate([
|
|
|
149
162
|
fromUserId: {
|
|
150
163
|
type: 'string',
|
|
151
164
|
example: '67505d5f84ff2b0b4fc245b9',
|
|
152
|
-
description: '
|
|
165
|
+
description: 'Sender user id',
|
|
153
166
|
},
|
|
154
167
|
toUserIds: {
|
|
155
168
|
type: 'array',
|
|
@@ -157,7 +170,7 @@ __decorate([
|
|
|
157
170
|
type: 'string',
|
|
158
171
|
},
|
|
159
172
|
example: ['675b95f987d0d8467f525e91', '6756c5be07e329d0106cdd36'],
|
|
160
|
-
description: '
|
|
173
|
+
description: 'Recipient user ids',
|
|
161
174
|
},
|
|
162
175
|
ccUserIds: {
|
|
163
176
|
type: 'array',
|
|
@@ -165,7 +178,7 @@ __decorate([
|
|
|
165
178
|
type: 'string',
|
|
166
179
|
},
|
|
167
180
|
example: ['675b95f987d0d8467f525e91', '6756c5be07e329d0106cdd36'],
|
|
168
|
-
description: '
|
|
181
|
+
description: 'CC user ids',
|
|
169
182
|
},
|
|
170
183
|
bccUserIds: {
|
|
171
184
|
type: 'array',
|
|
@@ -173,43 +186,43 @@ __decorate([
|
|
|
173
186
|
type: 'string',
|
|
174
187
|
},
|
|
175
188
|
example: ['675b95f987d0d8467f525e91', '6756c5be07e329d0106cdd36'],
|
|
176
|
-
description: '
|
|
189
|
+
description: 'BCC user ids',
|
|
177
190
|
},
|
|
178
191
|
replyToUserId: {
|
|
179
192
|
type: 'string',
|
|
180
193
|
example: '67505d5f84ff2b0b4fc245b9',
|
|
181
|
-
description: '
|
|
194
|
+
description: 'Reply to user id',
|
|
182
195
|
},
|
|
183
196
|
subject: {
|
|
184
197
|
type: 'string',
|
|
185
|
-
example: '
|
|
186
|
-
description: '
|
|
198
|
+
example: 'Hello from Steedos',
|
|
199
|
+
description: 'Email subject',
|
|
187
200
|
},
|
|
188
201
|
text: {
|
|
189
202
|
type: 'string',
|
|
190
|
-
example: '
|
|
191
|
-
description: '
|
|
203
|
+
example: 'This is a test email',
|
|
204
|
+
description: 'Email plain text content',
|
|
192
205
|
},
|
|
193
206
|
html: {
|
|
194
207
|
type: 'string',
|
|
195
|
-
example: '<h1
|
|
196
|
-
description: '
|
|
208
|
+
example: '<h1>This is HTML content</h1>',
|
|
209
|
+
description: 'Email HTML content',
|
|
197
210
|
},
|
|
198
211
|
headers: {
|
|
199
212
|
type: 'object',
|
|
200
|
-
description: '
|
|
213
|
+
description: 'Custom headers',
|
|
201
214
|
},
|
|
202
215
|
attachments: {
|
|
203
216
|
type: 'array',
|
|
204
217
|
items: {
|
|
205
|
-
type: 'object'
|
|
218
|
+
type: 'object',
|
|
206
219
|
},
|
|
207
|
-
description: '
|
|
220
|
+
description: 'Attachment list',
|
|
208
221
|
},
|
|
209
222
|
mailComposer: {
|
|
210
223
|
type: 'object',
|
|
211
|
-
description: 'MailComposer
|
|
212
|
-
}
|
|
224
|
+
description: 'MailComposer object',
|
|
225
|
+
},
|
|
213
226
|
},
|
|
214
227
|
required: ['spaceId', 'toUserIds', 'subject'],
|
|
215
228
|
},
|
|
@@ -233,10 +246,10 @@ __decorate([
|
|
|
233
246
|
__decorate([
|
|
234
247
|
(0, common_1.Patch)('config'),
|
|
235
248
|
(0, swagger_1.ApiOperation)({
|
|
236
|
-
summary: '
|
|
249
|
+
summary: 'Set email parameters',
|
|
237
250
|
}),
|
|
238
251
|
(0, swagger_1.ApiBody)({
|
|
239
|
-
description: '
|
|
252
|
+
description: 'Parameters required to send mail',
|
|
240
253
|
schema: {
|
|
241
254
|
type: 'object',
|
|
242
255
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"email.controller.js","sourceRoot":"","sources":["../../src/email/email.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA0E;AAC1E,6CAAwD;AACxD,yCAA4C;AAC5C,mDAA+C;AAIxC,IAAM,eAAe,GAArB,MAAM,eAAe;IAC1B,YAA6B,YAA0B;QAA1B,iBAAY,GAAZ,YAAY,CAAc;IAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"email.controller.js","sourceRoot":"","sources":["../../src/email/email.controller.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder6/email",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -12,16 +12,22 @@
|
|
|
12
12
|
"build:watch": "rimraf dist && tsc --watch"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@builder6/core": "3.0.8",
|
|
16
15
|
"bluebird": "^3.7.2",
|
|
17
16
|
"email-addresses": "^5.0.0",
|
|
18
17
|
"lodash": "^4.17.5",
|
|
19
18
|
"nodemailer": "^6.9.16"
|
|
20
19
|
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@builder6/core": "3.0.9",
|
|
22
|
+
"@builder6/moleculer": "3.0.9",
|
|
23
|
+
"@nestjs/common": "^11.0.0",
|
|
24
|
+
"@nestjs/core": "^11.0.0",
|
|
25
|
+
"@nestjs/swagger": "^11.0.7"
|
|
26
|
+
},
|
|
21
27
|
"publishConfig": {
|
|
22
28
|
"access": "public"
|
|
23
29
|
},
|
|
24
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "4151e07b946953c7742ee3b70a86c0827fb779bb",
|
|
25
31
|
"devDependencies": {
|
|
26
32
|
"@types/bluebird": "^3.5.42"
|
|
27
33
|
}
|