diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-07-01 17:29:07 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-07-01 17:29:07 +0800 |
commit | 1050e8db3015e7227448feca5d53a2414acf7305 (patch) | |
tree | 07d668b49bc60e6a82437bf180c1d52c986dd995 /deno/mail/app.ts | |
parent | 80d6b1742a6f3ea740f4673654850fb3a1105a5c (diff) | |
download | crupest-1050e8db3015e7227448feca5d53a2414acf7305.tar.gz crupest-1050e8db3015e7227448feca5d53a2414acf7305.tar.bz2 crupest-1050e8db3015e7227448feca5d53a2414acf7305.zip |
mail: remove 'aws' of aws message id map.
Diffstat (limited to 'deno/mail/app.ts')
-rw-r--r-- | deno/mail/app.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deno/mail/app.ts b/deno/mail/app.ts index 332c430..2a8c78a 100644 --- a/deno/mail/app.ts +++ b/deno/mail/app.ts @@ -49,7 +49,7 @@ export function createHono(outbound: MailDeliverer, inbound: MailDeliverer) { } else { const result = await outbound.deliverRaw(body); return context.json({ - awsMessageId: result.awsMessageId, + newMessageId: result.newMessageId, }); } }); |