@hedhog/mail 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/enums/mail-configuration-type.enum.d.ts +1 -0
- package/dist/enums/mail-configuration-type.enum.d.ts.map +1 -1
- package/dist/enums/mail-configuration-type.enum.js +1 -0
- package/dist/enums/mail-configuration-type.enum.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/interfaces/index.d.ts +3 -0
- package/dist/interfaces/index.d.ts.map +1 -0
- package/dist/interfaces/index.js +19 -0
- package/dist/interfaces/index.js.map +1 -0
- package/dist/interfaces/mail-module-options.interface.d.ts +34 -11
- package/dist/interfaces/mail-module-options.interface.d.ts.map +1 -1
- package/dist/mail.module.d.ts +5 -2
- package/dist/mail.module.d.ts.map +1 -1
- package/dist/mail.module.js +42 -3
- package/dist/mail.module.js.map +1 -1
- package/dist/mail.service.d.ts +5 -5
- package/dist/mail.service.d.ts.map +1 -1
- package/dist/mail.service.js +50 -17
- package/dist/mail.service.js.map +1 -1
- package/package.json +21 -2
- package/src/enums/mail-configuration-type.enum.ts +4 -3
- package/src/index.ts +2 -0
- package/src/interfaces/index.ts +2 -0
- package/src/interfaces/mail-module-options.interface.ts +43 -12
- package/src/mail.module.ts +55 -6
- package/src/mail.service.ts +60 -14
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail-configuration-type.enum.d.ts","sourceRoot":"","sources":["../../src/enums/mail-configuration-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,yBAAyB;
|
1
|
+
{"version":3,"file":"mail-configuration-type.enum.d.ts","sourceRoot":"","sources":["../../src/enums/mail-configuration-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,yBAAyB;IACnC,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,KAAK,UAAU;CAChB"}
|
@@ -4,6 +4,7 @@ exports.MailConfigurationTypeEnum = void 0;
|
|
4
4
|
var MailConfigurationTypeEnum;
|
5
5
|
(function (MailConfigurationTypeEnum) {
|
6
6
|
MailConfigurationTypeEnum["AWS"] = "AWS";
|
7
|
+
MailConfigurationTypeEnum["SMTP"] = "SMTP";
|
7
8
|
MailConfigurationTypeEnum["GMAIL"] = "GMAIL";
|
8
9
|
})(MailConfigurationTypeEnum || (exports.MailConfigurationTypeEnum = MailConfigurationTypeEnum = {}));
|
9
10
|
//# sourceMappingURL=mail-configuration-type.enum.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail-configuration-type.enum.js","sourceRoot":"","sources":["../../src/enums/mail-configuration-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
1
|
+
{"version":3,"file":"mail-configuration-type.enum.js","sourceRoot":"","sources":["../../src/enums/mail-configuration-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,yBAIX;AAJD,WAAY,yBAAyB;IACnC,wCAAW,CAAA;IACX,0CAAa,CAAA;IACb,4CAAe,CAAA;AACjB,CAAC,EAJW,yBAAyB,yCAAzB,yBAAyB,QAIpC"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC;AACrD,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./enums/mail-configuration-type.enum"), exports);
|
18
|
+
__exportStar(require("./interfaces"), exports);
|
17
19
|
__exportStar(require("./mail.module"), exports);
|
18
20
|
__exportStar(require("./mail.service"), exports);
|
19
21
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,iDAA+B"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uEAAqD;AACrD,+CAA6B;AAC7B,gDAA8B;AAC9B,iDAA+B"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,aAAa,CAAC"}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./mail-module-options.interface"), exports);
|
18
|
+
__exportStar(require("./mail-type"), exports);
|
19
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kEAAgD;AAChD,8CAA4B"}
|
@@ -1,13 +1,36 @@
|
|
1
|
-
import {
|
2
|
-
export
|
3
|
-
global?: boolean;
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
import { ModuleMetadata, Provider, Type } from '@nestjs/common';
|
2
|
+
export type MailModuleOptions = {
|
3
|
+
global?: boolean;
|
4
|
+
type: 'AWS';
|
5
|
+
region: string;
|
6
|
+
accessKeyId: string;
|
7
|
+
secretAccessKey: string;
|
8
|
+
from: string;
|
9
|
+
} | {
|
10
|
+
global?: boolean;
|
11
|
+
type: 'SMTP';
|
12
|
+
host: string;
|
13
|
+
port: number;
|
14
|
+
secure?: boolean;
|
15
|
+
username: string;
|
16
|
+
password: string;
|
17
|
+
} | {
|
18
|
+
global?: boolean;
|
19
|
+
type: 'GMAIL';
|
20
|
+
clientId: string;
|
21
|
+
clientSecret: string;
|
22
|
+
refreshToken: string;
|
23
|
+
from: string;
|
24
|
+
};
|
25
|
+
export interface MailOptionsFactory {
|
26
|
+
createMailOptions(): Promise<MailModuleOptions> | MailModuleOptions;
|
27
|
+
}
|
28
|
+
export interface MailModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
|
29
|
+
global?: boolean;
|
30
|
+
useExisting?: Type<MailOptionsFactory>;
|
31
|
+
useClass?: Type<MailOptionsFactory>;
|
32
|
+
useFactory?: (...args: any[]) => Promise<MailModuleOptions> | MailModuleOptions;
|
33
|
+
inject?: any[];
|
34
|
+
extraProviders?: Provider[];
|
12
35
|
}
|
13
36
|
//# sourceMappingURL=mail-module-options.interface.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail-module-options.interface.d.ts","sourceRoot":"","sources":["../../src/interfaces/mail-module-options.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
1
|
+
{"version":3,"file":"mail-module-options.interface.d.ts","sourceRoot":"","sources":["../../src/interfaces/mail-module-options.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAEhE,MAAM,MAAM,iBAAiB,GACzB;IACE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,KAAK,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;CACd,GACD;IACE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB,GACD;IACE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEN,MAAM,WAAW,kBAAkB;IACjC,iBAAiB,IAAI,OAAO,CAAC,iBAAiB,CAAC,GAAG,iBAAiB,CAAC;CACrE;AAED,MAAM,WAAW,sBACf,SAAQ,IAAI,CAAC,cAAc,EAAE,SAAS,CAAC;IACvC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,IAAI,CAAC,kBAAkB,CAAC,CAAC;IACvC,QAAQ,CAAC,EAAE,IAAI,CAAC,kBAAkB,CAAC,CAAC;IACpC,UAAU,CAAC,EAAE,CACX,GAAG,IAAI,EAAE,GAAG,EAAE,KACX,OAAO,CAAC,iBAAiB,CAAC,GAAG,iBAAiB,CAAC;IACpD,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;IACf,cAAc,CAAC,EAAE,QAAQ,EAAE,CAAC;CAC7B"}
|
package/dist/mail.module.d.ts
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
import { DynamicModule } from '@nestjs/common';
|
2
|
-
import { MailModuleOptions } from './interfaces/mail-module-options.interface';
|
2
|
+
import { MailModuleAsyncOptions, MailModuleOptions } from './interfaces/mail-module-options.interface';
|
3
3
|
export declare class MailModule {
|
4
|
-
static
|
4
|
+
static register(options: MailModuleOptions): DynamicModule;
|
5
|
+
static registerAsync(options: MailModuleAsyncOptions): DynamicModule;
|
6
|
+
private static createAsyncProviders;
|
7
|
+
private static createAsyncOptionsProvider;
|
5
8
|
}
|
6
9
|
//# sourceMappingURL=mail.module.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail.module.d.ts","sourceRoot":"","sources":["../src/mail.module.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"mail.module.d.ts","sourceRoot":"","sources":["../src/mail.module.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAoB,MAAM,gBAAgB,CAAC;AACjE,OAAO,EACL,sBAAsB,EACtB,iBAAiB,EAElB,MAAM,4CAA4C,CAAC;AAIpD,qBAKa,UAAU;IACrB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,iBAAiB,GAAG,aAAa;IAc1D,MAAM,CAAC,aAAa,CAAC,OAAO,EAAE,sBAAsB,GAAG,aAAa;IAYpE,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAenC,OAAO,CAAC,MAAM,CAAC,0BAA0B;CAiB1C"}
|
package/dist/mail.module.js
CHANGED
@@ -8,12 +8,13 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
8
8
|
var MailModule_1;
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
10
10
|
exports.MailModule = void 0;
|
11
|
+
const axios_1 = require("@nestjs/axios");
|
11
12
|
const common_1 = require("@nestjs/common");
|
12
|
-
const mail_service_1 = require("./mail.service");
|
13
13
|
const mail_consts_1 = require("./mail.consts");
|
14
|
-
const
|
14
|
+
const mail_service_1 = require("./mail.service");
|
15
15
|
let MailModule = MailModule_1 = class MailModule {
|
16
|
-
static
|
16
|
+
static register(options) {
|
17
|
+
console.log('MailModule.register', { options });
|
17
18
|
return {
|
18
19
|
module: MailModule_1,
|
19
20
|
global: options.global,
|
@@ -25,6 +26,44 @@ let MailModule = MailModule_1 = class MailModule {
|
|
25
26
|
],
|
26
27
|
};
|
27
28
|
}
|
29
|
+
static registerAsync(options) {
|
30
|
+
var _a;
|
31
|
+
return {
|
32
|
+
module: MailModule_1,
|
33
|
+
global: options.global,
|
34
|
+
imports: options.imports || [],
|
35
|
+
providers: [
|
36
|
+
...this.createAsyncProviders(options),
|
37
|
+
...((_a = options.extraProviders) !== null && _a !== void 0 ? _a : []),
|
38
|
+
],
|
39
|
+
};
|
40
|
+
}
|
41
|
+
static createAsyncProviders(options) {
|
42
|
+
if (options.useExisting || options.useFactory) {
|
43
|
+
return [this.createAsyncOptionsProvider(options)];
|
44
|
+
}
|
45
|
+
return [
|
46
|
+
this.createAsyncOptionsProvider(options),
|
47
|
+
{
|
48
|
+
provide: options.useClass,
|
49
|
+
useClass: options.useClass,
|
50
|
+
},
|
51
|
+
];
|
52
|
+
}
|
53
|
+
static createAsyncOptionsProvider(options) {
|
54
|
+
if (options.useFactory) {
|
55
|
+
return {
|
56
|
+
provide: mail_consts_1.MAIL_MODULE_OPTIONS,
|
57
|
+
useFactory: options.useFactory,
|
58
|
+
inject: options.inject || [],
|
59
|
+
};
|
60
|
+
}
|
61
|
+
return {
|
62
|
+
provide: mail_consts_1.MAIL_MODULE_OPTIONS,
|
63
|
+
useFactory: async (optionsFactory) => await optionsFactory.createMailOptions(),
|
64
|
+
inject: [options.useExisting || options.useClass],
|
65
|
+
};
|
66
|
+
}
|
28
67
|
};
|
29
68
|
exports.MailModule = MailModule;
|
30
69
|
exports.MailModule = MailModule = MailModule_1 = __decorate([
|
package/dist/mail.module.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail.module.js","sourceRoot":"","sources":["../src/mail.module.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"mail.module.js","sourceRoot":"","sources":["../src/mail.module.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,yCAA2C;AAC3C,2CAAiE;AAMjE,+CAAoD;AACpD,iDAA6C;AAOtC,IAAM,UAAU,kBAAhB,MAAM,UAAU;IACrB,MAAM,CAAC,QAAQ,CAAC,OAA0B;QACxC,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,EAAE,OAAO,EAAE,CAAC,CAAC;QAChD,OAAO;YACL,MAAM,EAAE,YAAU;YAClB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,SAAS,EAAE;gBACT;oBACE,OAAO,EAAE,iCAAmB;oBAC5B,QAAQ,EAAE,OAAO,IAAI,EAAE;iBACxB;aACF;SACF,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,aAAa,CAAC,OAA+B;;QAClD,OAAO;YACL,MAAM,EAAE,YAAU;YAClB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,OAAO,EAAE,OAAO,CAAC,OAAO,IAAI,EAAE;YAC9B,SAAS,EAAE;gBACT,GAAG,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC;gBACrC,GAAG,CAAC,MAAA,OAAO,CAAC,cAAc,mCAAI,EAAE,CAAC;aAClC;SACF,CAAC;IACJ,CAAC;IAEO,MAAM,CAAC,oBAAoB,CACjC,OAA+B;QAE/B,IAAI,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;YAC9C,OAAO,CAAC,IAAI,CAAC,0BAA0B,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,CAAC;QACD,OAAO;YACL,IAAI,CAAC,0BAA0B,CAAC,OAAO,CAAC;YACxC;gBACE,OAAO,EAAE,OAAO,CAAC,QAAQ;gBACzB,QAAQ,EAAE,OAAO,CAAC,QAAQ;aAC3B;SACF,CAAC;IACJ,CAAC;IAEO,MAAM,CAAC,0BAA0B,CACvC,OAA+B;QAE/B,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;YACvB,OAAO;gBACL,OAAO,EAAE,iCAAmB;gBAC5B,UAAU,EAAE,OAAO,CAAC,UAAU;gBAC9B,MAAM,EAAE,OAAO,CAAC,MAAM,IAAI,EAAE;aAC7B,CAAC;QACJ,CAAC;QACD,OAAO;YACL,OAAO,EAAE,iCAAmB;YAC5B,UAAU,EAAE,KAAK,EAAE,cAAkC,EAAE,EAAE,CACvD,MAAM,cAAc,CAAC,iBAAiB,EAAE;YAC1C,MAAM,EAAE,CAAC,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC,QAAQ,CAAC;SAClD,CAAC;IACJ,CAAC;CACF,CAAA;AA3DY,gCAAU;qBAAV,UAAU;IALtB,IAAA,eAAM,EAAC;QACN,OAAO,EAAE,CAAC,kBAAU,CAAC;QACrB,SAAS,EAAE,CAAC,0BAAW,CAAC;QACxB,OAAO,EAAE,CAAC,0BAAW,CAAC;KACvB,CAAC;GACW,UAAU,CA2DtB"}
|
package/dist/mail.service.d.ts
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
import { Mail } from './mail.consts';
|
2
|
-
import { SES } from 'aws-sdk';
|
3
|
-
import { MailModuleOptions } from './interfaces/mail-module-options.interface';
|
4
1
|
import { HttpService } from '@nestjs/axios';
|
2
|
+
import { MailModuleOptions } from './interfaces/mail-module-options.interface';
|
3
|
+
import { Mail } from './mail.consts';
|
5
4
|
export declare class MailService {
|
6
5
|
private readonly mailConfig;
|
7
6
|
private readonly httpService;
|
8
7
|
constructor(mailConfig: MailModuleOptions, httpService: HttpService);
|
9
|
-
send(mail: Mail): Promise<
|
8
|
+
send(mail: Mail): Promise<any>;
|
10
9
|
createRawEmail(mail: Mail): Promise<string>;
|
10
|
+
sendWithSMTP(mail: Mail): Promise<any>;
|
11
11
|
sendWithGmail(mail: Mail): Promise<import("axios").AxiosResponse<any, any>>;
|
12
|
-
sendWithSES(mail: Mail): Promise<import("aws-sdk/lib/request").PromiseResult<
|
12
|
+
sendWithSES(mail: Mail): Promise<import("aws-sdk/lib/request").PromiseResult<import("aws-sdk/clients/ses").SendRawEmailResponse, import("aws-sdk").AWSError>>;
|
13
13
|
}
|
14
14
|
//# sourceMappingURL=mail.service.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail.service.d.ts","sourceRoot":"","sources":["../src/mail.service.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"mail.service.d.ts","sourceRoot":"","sources":["../src/mail.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAK5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AAC/E,OAAO,EAAE,IAAI,EAAuB,MAAM,eAAe,CAAC;AAE1D,qBACa,WAAW;IAES,OAAO,CAAC,QAAQ,CAAC,UAAU;IACxD,OAAO,CAAC,QAAQ,CAAC,WAAW;gBADkB,UAAU,EAAE,iBAAiB,EAC1D,WAAW,EAAE,WAAW;IAGrC,IAAI,CAAC,IAAI,EAAE,IAAI;IAaf,cAAc,CAAC,IAAI,EAAE,IAAI;IAyEzB,YAAY,CAAC,IAAI,EAAE,IAAI;IAqCvB,aAAa,CAAC,IAAI,EAAE,IAAI;IA0CxB,WAAW,CAAC,IAAI,EAAE,IAAI;CAyH7B"}
|
package/dist/mail.service.js
CHANGED
@@ -36,31 +36,29 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
36
36
|
};
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
38
38
|
exports.MailService = void 0;
|
39
|
+
const axios_1 = require("@nestjs/axios");
|
39
40
|
const common_1 = require("@nestjs/common");
|
40
|
-
const mail_consts_1 = require("./mail.consts");
|
41
|
-
const aws_sdk_1 = require("aws-sdk");
|
42
41
|
const mimemessage = __importStar(require("mimemessage"));
|
43
|
-
const mail_configuration_type_enum_1 = require("./enums/mail-configuration-type.enum");
|
44
|
-
const googleapis_1 = require("googleapis");
|
45
|
-
const axios_1 = require("@nestjs/axios");
|
46
42
|
const rxjs_1 = require("rxjs");
|
43
|
+
const mail_configuration_type_enum_1 = require("./enums/mail-configuration-type.enum");
|
44
|
+
const mail_consts_1 = require("./mail.consts");
|
47
45
|
let MailService = class MailService {
|
48
46
|
constructor(mailConfig, httpService) {
|
49
47
|
this.mailConfig = mailConfig;
|
50
48
|
this.httpService = httpService;
|
51
49
|
}
|
52
50
|
async send(mail) {
|
53
|
-
switch (this.mailConfig.
|
51
|
+
switch (this.mailConfig.type) {
|
54
52
|
case mail_configuration_type_enum_1.MailConfigurationTypeEnum.AWS:
|
55
|
-
|
56
|
-
break;
|
53
|
+
return this.sendWithSES(mail);
|
57
54
|
case mail_configuration_type_enum_1.MailConfigurationTypeEnum.GMAIL:
|
58
|
-
|
59
|
-
|
55
|
+
return this.sendWithGmail(mail);
|
56
|
+
case mail_configuration_type_enum_1.MailConfigurationTypeEnum.SMTP:
|
57
|
+
return this.sendWithSMTP(mail);
|
60
58
|
}
|
61
59
|
}
|
62
60
|
async createRawEmail(mail) {
|
63
|
-
var _a;
|
61
|
+
var _a, _b;
|
64
62
|
if (mail.attachments instanceof Array && ((_a = mail.attachments) === null || _a === void 0 ? void 0 : _a.length)) {
|
65
63
|
const mailContent = mimemessage.factory({
|
66
64
|
contentType: 'multipart/mixed',
|
@@ -79,7 +77,7 @@ let MailService = class MailService {
|
|
79
77
|
});
|
80
78
|
alternateEntity.body.push(htmlEntity);
|
81
79
|
mailContent.body.push(alternateEntity);
|
82
|
-
await Promise.all(mail.attachments.map(async (attachment) => {
|
80
|
+
await Promise.all(((_b = mail.attachments) !== null && _b !== void 0 ? _b : []).map(async (attachment) => {
|
83
81
|
const attachmentEntity = mimemessage.factory({
|
84
82
|
contentType: attachment.contentType,
|
85
83
|
contentTransferEncoding: 'base64',
|
@@ -116,10 +114,40 @@ let MailService = class MailService {
|
|
116
114
|
return encodedMessage;
|
117
115
|
}
|
118
116
|
}
|
117
|
+
async sendWithSMTP(mail) {
|
118
|
+
if (this.mailConfig.type !== 'SMTP') {
|
119
|
+
throw new Error('Invalid mail configuration type');
|
120
|
+
}
|
121
|
+
const { password: pass, username: user, host, port, secure = false, } = this.mailConfig;
|
122
|
+
const nodemailer = await Promise.resolve().then(() => __importStar(require('nodemailer')));
|
123
|
+
const transporter = nodemailer.createTransport({
|
124
|
+
host,
|
125
|
+
port,
|
126
|
+
secure,
|
127
|
+
auth: {
|
128
|
+
user,
|
129
|
+
pass,
|
130
|
+
},
|
131
|
+
});
|
132
|
+
return transporter.sendMail({
|
133
|
+
from: mail.from || process.env.SMTP_FROM || process.env.SMTP_USER,
|
134
|
+
to: mail.to,
|
135
|
+
subject: mail.subject,
|
136
|
+
html: mail.body,
|
137
|
+
cc: mail.cc,
|
138
|
+
bcc: mail.bcc,
|
139
|
+
replyTo: mail.replyTo,
|
140
|
+
priority: mail.priority,
|
141
|
+
});
|
142
|
+
}
|
119
143
|
async sendWithGmail(mail) {
|
144
|
+
if (this.mailConfig.type !== 'GMAIL') {
|
145
|
+
throw new Error('Invalid mail configuration type');
|
146
|
+
}
|
120
147
|
const { clientId, clientSecret, from, refreshToken } = this.mailConfig;
|
121
148
|
const redirectURI = 'https://developers.google.com/oauthplayground';
|
122
|
-
const
|
149
|
+
const { google } = await Promise.resolve().then(() => __importStar(require('googleapis')));
|
150
|
+
const oauth2Client = new google.auth.OAuth2(clientId, clientSecret, redirectURI);
|
123
151
|
oauth2Client.setCredentials({
|
124
152
|
refresh_token: refreshToken,
|
125
153
|
});
|
@@ -137,10 +165,15 @@ let MailService = class MailService {
|
|
137
165
|
return (0, rxjs_1.firstValueFrom)(response);
|
138
166
|
}
|
139
167
|
async sendWithSES(mail) {
|
140
|
-
|
141
|
-
|
168
|
+
var _a;
|
169
|
+
if (this.mailConfig.type !== 'AWS') {
|
170
|
+
throw new Error('Invalid mail configuration type');
|
171
|
+
}
|
172
|
+
const { region, from, accessKeyId, secretAccessKey } = this.mailConfig;
|
173
|
+
const { SES } = await Promise.resolve().then(() => __importStar(require('aws-sdk')));
|
174
|
+
const ses = new SES({
|
142
175
|
apiVersion: '2010-12-01',
|
143
|
-
region
|
176
|
+
region,
|
144
177
|
credentials: {
|
145
178
|
accessKeyId,
|
146
179
|
secretAccessKey,
|
@@ -191,7 +224,7 @@ let MailService = class MailService {
|
|
191
224
|
});
|
192
225
|
alternateEntity.body.push(htmlEntity);
|
193
226
|
mailContent.body.push(alternateEntity);
|
194
|
-
await Promise.all(mail.attachments.map((item) => {
|
227
|
+
await Promise.all(((_a = mail.attachments) !== null && _a !== void 0 ? _a : []).map((item) => {
|
195
228
|
const attachmentEntity = mimemessage.factory({
|
196
229
|
contentType: item.contentType,
|
197
230
|
contentTransferEncoding: 'base64',
|
package/dist/mail.service.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mail.service.js","sourceRoot":"","sources":["../src/mail.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAoD;AACpD
|
1
|
+
{"version":3,"file":"mail.service.js","sourceRoot":"","sources":["../src/mail.service.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hedhog/mail",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.5",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"scripts": {
|
6
6
|
"build": "tsc --project tsconfig.production.json && npm version patch",
|
@@ -9,5 +9,24 @@
|
|
9
9
|
"keywords": [],
|
10
10
|
"author": "HedHog",
|
11
11
|
"license": "MIT",
|
12
|
-
"description": ""
|
12
|
+
"description": "",
|
13
|
+
"dependencies": {
|
14
|
+
"mimemessage": "1.0.5"
|
15
|
+
},
|
16
|
+
"peerDependencies": {
|
17
|
+
"aws-sdk": "2.1691.0",
|
18
|
+
"googleapis": "144.0.0",
|
19
|
+
"nodemailer": "6.9.15"
|
20
|
+
},
|
21
|
+
"peerDependenciesMeta": {
|
22
|
+
"aws-sdk": {
|
23
|
+
"optional": true
|
24
|
+
},
|
25
|
+
"googleapis": {
|
26
|
+
"optional": true
|
27
|
+
},
|
28
|
+
"nodemailer": {
|
29
|
+
"optional": true
|
30
|
+
}
|
31
|
+
}
|
13
32
|
}
|
package/src/index.ts
CHANGED
@@ -1,13 +1,44 @@
|
|
1
|
-
import {
|
1
|
+
import { ModuleMetadata, Provider, Type } from '@nestjs/common';
|
2
2
|
|
3
|
-
export
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
3
|
+
export type MailModuleOptions =
|
4
|
+
| {
|
5
|
+
global?: boolean;
|
6
|
+
type: 'AWS';
|
7
|
+
region: string;
|
8
|
+
accessKeyId: string;
|
9
|
+
secretAccessKey: string;
|
10
|
+
from: string;
|
11
|
+
}
|
12
|
+
| {
|
13
|
+
global?: boolean;
|
14
|
+
type: 'SMTP';
|
15
|
+
host: string;
|
16
|
+
port: number;
|
17
|
+
secure?: boolean;
|
18
|
+
username: string;
|
19
|
+
password: string;
|
20
|
+
}
|
21
|
+
| {
|
22
|
+
global?: boolean;
|
23
|
+
type: 'GMAIL';
|
24
|
+
clientId: string;
|
25
|
+
clientSecret: string;
|
26
|
+
refreshToken: string;
|
27
|
+
from: string;
|
28
|
+
};
|
29
|
+
|
30
|
+
export interface MailOptionsFactory {
|
31
|
+
createMailOptions(): Promise<MailModuleOptions> | MailModuleOptions;
|
32
|
+
}
|
33
|
+
|
34
|
+
export interface MailModuleAsyncOptions
|
35
|
+
extends Pick<ModuleMetadata, 'imports'> {
|
36
|
+
global?: boolean;
|
37
|
+
useExisting?: Type<MailOptionsFactory>;
|
38
|
+
useClass?: Type<MailOptionsFactory>;
|
39
|
+
useFactory?: (
|
40
|
+
...args: any[]
|
41
|
+
) => Promise<MailModuleOptions> | MailModuleOptions;
|
42
|
+
inject?: any[];
|
43
|
+
extraProviders?: Provider[];
|
44
|
+
}
|
package/src/mail.module.ts
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
|
1
|
+
import { HttpModule } from '@nestjs/axios';
|
2
|
+
import { DynamicModule, Module, Provider } from '@nestjs/common';
|
3
|
+
import {
|
4
|
+
MailModuleAsyncOptions,
|
5
|
+
MailModuleOptions,
|
6
|
+
MailOptionsFactory,
|
7
|
+
} from './interfaces/mail-module-options.interface';
|
5
8
|
import { MAIL_MODULE_OPTIONS } from './mail.consts';
|
6
|
-
import {
|
9
|
+
import { MailService } from './mail.service';
|
7
10
|
|
8
11
|
@Module({
|
9
12
|
imports: [HttpModule],
|
@@ -11,7 +14,8 @@ import { HttpModule, HttpService } from '@nestjs/axios';
|
|
11
14
|
exports: [MailService],
|
12
15
|
})
|
13
16
|
export class MailModule {
|
14
|
-
static
|
17
|
+
static register(options: MailModuleOptions): DynamicModule {
|
18
|
+
console.log('MailModule.register', { options });
|
15
19
|
return {
|
16
20
|
module: MailModule,
|
17
21
|
global: options.global,
|
@@ -23,4 +27,49 @@ export class MailModule {
|
|
23
27
|
],
|
24
28
|
};
|
25
29
|
}
|
30
|
+
|
31
|
+
static registerAsync(options: MailModuleAsyncOptions): DynamicModule {
|
32
|
+
return {
|
33
|
+
module: MailModule,
|
34
|
+
global: options.global,
|
35
|
+
imports: options.imports || [],
|
36
|
+
providers: [
|
37
|
+
...this.createAsyncProviders(options),
|
38
|
+
...(options.extraProviders ?? []),
|
39
|
+
],
|
40
|
+
};
|
41
|
+
}
|
42
|
+
|
43
|
+
private static createAsyncProviders(
|
44
|
+
options: MailModuleAsyncOptions,
|
45
|
+
): Provider[] {
|
46
|
+
if (options.useExisting || options.useFactory) {
|
47
|
+
return [this.createAsyncOptionsProvider(options)];
|
48
|
+
}
|
49
|
+
return [
|
50
|
+
this.createAsyncOptionsProvider(options),
|
51
|
+
{
|
52
|
+
provide: options.useClass,
|
53
|
+
useClass: options.useClass,
|
54
|
+
},
|
55
|
+
];
|
56
|
+
}
|
57
|
+
|
58
|
+
private static createAsyncOptionsProvider(
|
59
|
+
options: MailModuleAsyncOptions,
|
60
|
+
): Provider {
|
61
|
+
if (options.useFactory) {
|
62
|
+
return {
|
63
|
+
provide: MAIL_MODULE_OPTIONS,
|
64
|
+
useFactory: options.useFactory,
|
65
|
+
inject: options.inject || [],
|
66
|
+
};
|
67
|
+
}
|
68
|
+
return {
|
69
|
+
provide: MAIL_MODULE_OPTIONS,
|
70
|
+
useFactory: async (optionsFactory: MailOptionsFactory) =>
|
71
|
+
await optionsFactory.createMailOptions(),
|
72
|
+
inject: [options.useExisting || options.useClass],
|
73
|
+
};
|
74
|
+
}
|
26
75
|
}
|
package/src/mail.service.ts
CHANGED
@@ -1,12 +1,10 @@
|
|
1
|
+
import { HttpService } from '@nestjs/axios';
|
1
2
|
import { Inject, Injectable } from '@nestjs/common';
|
2
|
-
import { Mail, MAIL_MODULE_OPTIONS } from './mail.consts';
|
3
|
-
import { SES } from 'aws-sdk';
|
4
3
|
import * as mimemessage from 'mimemessage';
|
4
|
+
import { firstValueFrom } from 'rxjs';
|
5
5
|
import { MailConfigurationTypeEnum } from './enums/mail-configuration-type.enum';
|
6
6
|
import { MailModuleOptions } from './interfaces/mail-module-options.interface';
|
7
|
-
import {
|
8
|
-
import { HttpService } from '@nestjs/axios';
|
9
|
-
import { firstValueFrom } from 'rxjs';
|
7
|
+
import { Mail, MAIL_MODULE_OPTIONS } from './mail.consts';
|
10
8
|
|
11
9
|
@Injectable()
|
12
10
|
export class MailService {
|
@@ -16,14 +14,15 @@ export class MailService {
|
|
16
14
|
) {}
|
17
15
|
|
18
16
|
async send(mail: Mail) {
|
19
|
-
switch (this.mailConfig.
|
17
|
+
switch (this.mailConfig.type) {
|
20
18
|
case MailConfigurationTypeEnum.AWS:
|
21
|
-
|
22
|
-
break;
|
19
|
+
return this.sendWithSES(mail);
|
23
20
|
|
24
21
|
case MailConfigurationTypeEnum.GMAIL:
|
25
|
-
|
26
|
-
|
22
|
+
return this.sendWithGmail(mail);
|
23
|
+
|
24
|
+
case MailConfigurationTypeEnum.SMTP:
|
25
|
+
return this.sendWithSMTP(mail);
|
27
26
|
}
|
28
27
|
}
|
29
28
|
|
@@ -53,7 +52,7 @@ export class MailService {
|
|
53
52
|
mailContent.body.push(alternateEntity);
|
54
53
|
|
55
54
|
await Promise.all(
|
56
|
-
mail.attachments.map(async (attachment) => {
|
55
|
+
(mail.attachments ?? []).map(async (attachment) => {
|
57
56
|
const attachmentEntity = mimemessage.factory({
|
58
57
|
contentType: attachment.contentType,
|
59
58
|
contentTransferEncoding: 'base64',
|
@@ -100,10 +99,52 @@ export class MailService {
|
|
100
99
|
}
|
101
100
|
}
|
102
101
|
|
102
|
+
async sendWithSMTP(mail: Mail) {
|
103
|
+
if (this.mailConfig.type !== 'SMTP') {
|
104
|
+
throw new Error('Invalid mail configuration type');
|
105
|
+
}
|
106
|
+
|
107
|
+
const {
|
108
|
+
password: pass,
|
109
|
+
username: user,
|
110
|
+
host,
|
111
|
+
port,
|
112
|
+
secure = false,
|
113
|
+
} = this.mailConfig;
|
114
|
+
|
115
|
+
const nodemailer = await import('nodemailer');
|
116
|
+
|
117
|
+
const transporter = nodemailer.createTransport({
|
118
|
+
host,
|
119
|
+
port,
|
120
|
+
secure,
|
121
|
+
auth: {
|
122
|
+
user,
|
123
|
+
pass,
|
124
|
+
},
|
125
|
+
});
|
126
|
+
|
127
|
+
return transporter.sendMail({
|
128
|
+
from: mail.from || process.env.SMTP_FROM || process.env.SMTP_USER,
|
129
|
+
to: mail.to,
|
130
|
+
subject: mail.subject,
|
131
|
+
html: mail.body,
|
132
|
+
cc: mail.cc,
|
133
|
+
bcc: mail.bcc,
|
134
|
+
replyTo: mail.replyTo,
|
135
|
+
priority: mail.priority,
|
136
|
+
});
|
137
|
+
}
|
138
|
+
|
103
139
|
async sendWithGmail(mail: Mail) {
|
140
|
+
if (this.mailConfig.type !== 'GMAIL') {
|
141
|
+
throw new Error('Invalid mail configuration type');
|
142
|
+
}
|
104
143
|
const { clientId, clientSecret, from, refreshToken } = this.mailConfig;
|
105
144
|
const redirectURI = 'https://developers.google.com/oauthplayground';
|
106
145
|
|
146
|
+
const { google } = await import('googleapis');
|
147
|
+
|
107
148
|
const oauth2Client = new google.auth.OAuth2(
|
108
149
|
clientId,
|
109
150
|
clientSecret,
|
@@ -138,11 +179,16 @@ export class MailService {
|
|
138
179
|
}
|
139
180
|
|
140
181
|
async sendWithSES(mail: Mail) {
|
141
|
-
|
182
|
+
if (this.mailConfig.type !== 'AWS') {
|
183
|
+
throw new Error('Invalid mail configuration type');
|
184
|
+
}
|
185
|
+
const { region, from, accessKeyId, secretAccessKey } = this.mailConfig;
|
186
|
+
|
187
|
+
const { SES } = await import('aws-sdk');
|
142
188
|
|
143
189
|
const ses = new SES({
|
144
190
|
apiVersion: '2010-12-01',
|
145
|
-
region
|
191
|
+
region,
|
146
192
|
credentials: {
|
147
193
|
accessKeyId,
|
148
194
|
secretAccessKey,
|
@@ -200,7 +246,7 @@ export class MailService {
|
|
200
246
|
mailContent.body.push(alternateEntity);
|
201
247
|
|
202
248
|
await Promise.all(
|
203
|
-
mail.attachments.map((item) => {
|
249
|
+
(mail.attachments ?? []).map((item) => {
|
204
250
|
const attachmentEntity = mimemessage.factory({
|
205
251
|
contentType: item.contentType,
|
206
252
|
contentTransferEncoding: 'base64',
|