23 lines
356 B
TypeScript
23 lines
356 B
TypeScript
|
module SendgridMock {
|
||
|
class Email {
|
||
|
constructor() {
|
||
|
// @ts-ignore
|
||
|
this.apiKey = null
|
||
|
}
|
||
|
|
||
|
setApiKey(apiKey: any) {
|
||
|
// @ts-ignore
|
||
|
this.apiKey = apiKey
|
||
|
}
|
||
|
|
||
|
async send(msg: any) {
|
||
|
if (msg.to === "invalid@test.com") {
|
||
|
throw "Invalid"
|
||
|
}
|
||
|
return msg
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = new Email()
|
||
|
}
|