From 5020f392aec6ac33c7a5f951a7b0bedc65702ebc Mon Sep 17 00:00:00 2001 From: Ping Liu Date: Tue, 14 Oct 2025 16:53:43 -0500 Subject: [PATCH] fixed link to Nodemailer SES transport page --- .doc_gen/metadata/ses_metadata.yaml | 2 +- javascriptv3/example_code/ses/src/send-with-attachments.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.doc_gen/metadata/ses_metadata.yaml b/.doc_gen/metadata/ses_metadata.yaml index 9eb78a57ccc..0ac49f04d37 100644 --- a/.doc_gen/metadata/ses_metadata.yaml +++ b/.doc_gen/metadata/ses_metadata.yaml @@ -79,7 +79,7 @@ ses_SendRawEmail: github: javascriptv3/example_code/ses sdkguide: excerpts: - - description: Use nodemailer to send an email with + - description: Use nodemailer to send an email with an attachment. snippet_tags: - javascript.v3.ses.attachment diff --git a/javascriptv3/example_code/ses/src/send-with-attachments.js b/javascriptv3/example_code/ses/src/send-with-attachments.js index 837fc9655b6..dee7e40d07f 100644 --- a/javascriptv3/example_code/ses/src/send-with-attachments.js +++ b/javascriptv3/example_code/ses/src/send-with-attachments.js @@ -9,7 +9,7 @@ import sesClientModule from "@aws-sdk/client-ses"; * nodemailer wraps the SES SDK and calls SendRawEmail. Use this for more advanced * functionality like adding attachments to your email. * - * https://nodemailer.com/transports/ses/ + * https://nodemailer.com/transports/ses */ import nodemailer from "nodemailer";