You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-sesv2): This release enables customers to provide the email template content in the SESv2 SendEmail and SendBulkEmail APIs instead of the name or the ARN of a stored email template.
* <p>The content of the email, composed of a subject line, an HTML part, and a text-only
2675
-
* part.</p>
2676
-
* @public
2677
-
*/
2678
-
exportinterfaceEmailTemplateContent{
2679
-
/**
2680
-
* <p>The subject line of the email.</p>
2681
-
* @public
2682
-
*/
2683
-
Subject?: string;
2684
-
2685
-
/**
2686
-
* <p>The email body that will be visible to recipients whose email clients do not display
2687
-
* HTML.</p>
2688
-
* @public
2689
-
*/
2690
-
Text?: string;
2691
-
2692
-
/**
2693
-
* <p>The HTML body of the email.</p>
2694
-
* @public
2695
-
*/
2696
-
Html?: string;
2697
-
}
2698
-
2699
2712
/**
2700
2713
* <p>Represents a request to create an email template. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES
"smithy.api#documentation": "<p>The content of the template.</p>\n <note>\n <p>Amazon SES supports only simple substitions when you send email using the \n <code>SendEmail</code> or <code>SendBulkEmail</code> operations and \n you provide the full template content in the request.</p>\n </note>"
"smithy.api#documentation": "<p>An object that defines the email template to use for an email message, and the values\n to use for any message variables in that template. An <i>email\n template</i> is a type of message template that contains content that you\n want to define, save, and reuse in email messages that you send.</p>"
11791
+
"smithy.api#documentation": "<p>An object that defines the email template to use for an email message, and the values\n to use for any message variables in that template. An <i>email\n template</i> is a type of message template that contains content that you\n want to reuse in email messages that you send. You can specifiy the email template by providing \n the name or ARN of an <i>email template</i> \n previously saved in your Amazon SES account or by providing the full template content.</p>"
0 commit comments