-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to show bcc recipients if present, and not error on missi…
…ng to recipient
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,19 @@ describe("App Tests", () => { | |
html_part: null, | ||
}, | ||
}, | ||
{ | ||
Timestamp: Date.now(), | ||
Subject: "Test email CC and BCC only", | ||
Destination: { | ||
ToAddresses: [], | ||
CcAddresses: ['[email protected]'], | ||
BccAddresses: ['[email protected]'] | ||
}, | ||
Body: { | ||
text_part: "This is a test email with only CC and BCC recipients", | ||
html_part: null, | ||
}, | ||
}, | ||
], | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters