From 866fa2093dda9695f276e7105c99b5437f134308 Mon Sep 17 00:00:00 2001 From: Edimar Cardoso Date: Thu, 28 Jul 2022 11:57:53 -0300 Subject: [PATCH] Remove incorrect @deprecated annotation. The correct strategy is: 1. Only sync. (Current) 2. Both sync and async (with a suffix). 3. Only async (without a suffix). Thank you! @StorytellerCZ and @radekmie --- packages/email/email.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/email/email.js b/packages/email/email.js index af07a8766a..20a04aa72f 100644 --- a/packages/email/email.js +++ b/packages/email/email.js @@ -231,7 +231,6 @@ Email.customTransport = undefined; * @param {Object[]} [options.attachments] Array of attachment objects, as * described in the [nodemailer documentation](https://nodemailer.com/message/attachments/). * @param {MailComposer} [options.mailComposer] A [MailComposer](https://nodemailer.com/extras/mailcomposer/#e-mail-message-fields) - * @deprecated in 2.8 * object representing the message to be sent. Overrides all other options. * You can create a `MailComposer` object via * `new EmailInternals.NpmModules.mailcomposer.module`.