Close #31
This commit is contained in:
parent
ab543e302a
commit
640fbef200
4
index.ts
4
index.ts
|
@ -89,7 +89,9 @@ export const emailServer = new SMTPServer({
|
||||||
const email = await mailparser.simpleParser(stream);
|
const email = await mailparser.simpleParser(stream);
|
||||||
const content =
|
const content =
|
||||||
typeof email.html === "string" ? email.html : email.textAsHtml ?? "";
|
typeof email.html === "string" ? email.html : email.textAsHtml ?? "";
|
||||||
for (const { address } of session.envelope.rcptTo) {
|
for (const address of new Set(
|
||||||
|
session.envelope.rcptTo.map(({ address }) => address)
|
||||||
|
)) {
|
||||||
const match = address.match(
|
const match = address.match(
|
||||||
new RegExp(`^(?<identifier>\\w+)@${R(EMAIL_DOMAIN)}$`)
|
new RegExp(`^(?<identifier>\\w+)@${R(EMAIL_DOMAIN)}$`)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue