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