All files / classes/email production-email.ts

75% Statements 3/4
100% Branches 0/0
25% Functions 1/4
75% Lines 3/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23    1x     1x   2x                              
import { ClientResponse } from "@sendgrid/client/src/response";
 
import Email from "./email";
import { ConfigurationData } from "../configuration";
 
export default class ProductionEmail extends Email {
  constructor(configurationData?: ConfigurationData) {
    super(configurationData);
  }
 
  public pre(): void {}
 
  public post(response: ClientResponse): void {}
 
  public send(): Promise<[ClientResponse, any]> {
    return this.client.request({
      method: "POST",
      url: "/v3/mail/send",
      body: this.mail.toJSON()
    });
  }
}