Skip to content

Commit

Permalink
feat(dkim): add dkim optional parameter to send mail options
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwenael Provost committed Jun 5, 2020
1 parent 8d0e2ad commit aab5810
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/interfaces/send-mail-options.interface.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { SendMailOptions } from 'nodemailer';
import * as DKIM from 'nodemailer/lib/dkim';

export type TextEncoding = 'quoted-printable' | 'base64';
export type Headers =
Expand Down Expand Up @@ -43,4 +44,5 @@ export interface ISendMailOptions extends SendMailOptions {
contentType?: string;
cid?: string;
}[];
dkim?: DKIM.Options;
}

0 comments on commit aab5810

Please sign in to comment.