@bobfrankston/rmfmail 1.2.117 → 1.2.118

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/app.ts CHANGED
@@ -5616,6 +5616,7 @@ document.addEventListener("mailx-popout-message", (async (e: any) => {
5616
5616
  accountId,
5617
5617
  to: msg.to || [],
5618
5618
  cc: msg.cc || [],
5619
+ bcc: msg.bcc || [],
5619
5620
  subject: msg.subject || subject || "",
5620
5621
  bodyHtml: msg.bodyHtml || "",
5621
5622
  inReplyTo: msg.inReplyTo || "",
@@ -4693,6 +4693,7 @@ async function saveDraft2() {
4693
4693
  bodyText: editor.getText(),
4694
4694
  to: toInput.value,
4695
4695
  cc: ccInput.value,
4696
+ bcc: bccInput.value,
4696
4697
  previousDraftUid: draftUid,
4697
4698
  draftId
4698
4699
  });