From 74ede9be3ffa2fa738f725e2e230bd0aa18c5a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max-Antoine=20Cl=C3=A9ment?= <67877770+maclementED@users.noreply.github.com> Date: Mon, 3 Jul 2023 16:01:26 -0400 Subject: [PATCH] Update ISendMailOptions type 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 https://github.com/adonisjs/mail/pull/82 --- lib/interfaces/send-mail-options.interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interfaces/send-mail-options.interface.ts b/lib/interfaces/send-mail-options.interface.ts index 283ef996..1360b350 100644 --- a/lib/interfaces/send-mail-options.interface.ts +++ b/lib/interfaces/send-mail-options.interface.ts @@ -20,7 +20,7 @@ export interface ISendMailOptions extends SendMailOptions { to?: string | Address | Array; cc?: string | Address | Array; bcc?: string | Address | Array; - replyTo?: string | Address; + replyTo?: string | Address | Array; inReplyTo?: string | Address; from?: string | Address; subject?: string;