We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd945e2 commit 0319520Copy full SHA for 0319520
src/email.ts
@@ -1,6 +1,10 @@
1
import type { EmailMessage } from './types/message';
2
import {MessageType} from './types/message'
3
4
+/**
5
+ * Determines the recipients for an email reply based on the last email message's details,
6
+ * the conversation contact, and system-specific email addresses.
7
+ */
8
export function getRecipients(lastEmail: EmailMessage, conversationContact: string, inboxEmail: string, forwardToEmail: string) {
9
let to = [] as string[];
10
let cc = [] as string[];
0 commit comments