1
0
Fork 0
mirror of synced 2024-09-03 11:11:49 +12:00
budibase/packages/server/__mocks__/@sendgrid/mail.ts
2024-03-20 11:46:39 +00:00

23 lines
421 B
TypeScript

// eslint-disable-next-line @typescript-eslint/no-unused-vars
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()
}