23 lines
359 B
TypeScript
23 lines
359 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@example.com") {
|
|
throw "Invalid"
|
|
}
|
|
return msg
|
|
}
|
|
}
|
|
|
|
module.exports = new Email()
|
|
}
|