Есть ли способ импортировать файлы HTML вместо того, чтобы просто писать код в части HTML в AWS API шаблона электронной почты?
{
"Template": {
"TemplateName": "Paradigm Initiative Monthly Newsletter",
"SubjectPart": "Greetings, {{name}}!",
"TextPart": "Dear {{name}},\r\nYour favorite animal is {{favoriteanimal}}.",
"HtmlPart": "<h1>Hello {{name}}</h1><p>Your favorite animal is {{favoriteanimal}}.</p>"
// Instead of writing the HTML code this way, is it possible to import it and then use "index.html"
}
}