Skip to content

Commit

Permalink
Update ISendMailOptions type
Browse files Browse the repository at this point in the history
Updated the definition for the interface ISendMailOptions to add the possibility to have more than one Address to reply to. 

This was added on nodemailer on this PR adonisjs/mail#82
  • Loading branch information
maclementED committed Jul 3, 2023
1 parent 1f39b25 commit 74ede9b
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 @@ -20,7 +20,7 @@ export interface ISendMailOptions extends SendMailOptions {
to?: string | Address | Array<string | Address>;
cc?: string | Address | Array<string | Address>;
bcc?: string | Address | Array<string | Address>;
replyTo?: string | Address;
replyTo?: string | Address | Array<string | Address>;
inReplyTo?: string | Address;
from?: string | Address;
subject?: string;
Expand Down

0 comments on commit 74ede9b

Please sign in to comment.