Skip to content

Commit

Permalink
fix(): optional key in atachments interface #110
Browse files Browse the repository at this point in the history
cid is optional key in nodemailer https://nodemailer.com/message/attachments/
  • Loading branch information
juandav authored Apr 1, 2020
1 parent a8caf91 commit 0d951ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/interfaces/send-mail-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ export interface ISendMailOptions extends SendMailOptions {
contents?: any;
path?: string;
contentType?: string;
cid: string;
cid?: string;
}[];
}

0 comments on commit 0d951ae

Please sign in to comment.