我正在使用AWS SES按照文档https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html发送电子邮件。示例模板中的HTML部分太短,但我需要一个包含多行的长HTML部分。例如,它有以下几行:
{
"Template": {
"TemplateName": "Group_Invitation",
"SubjectPart": "{{who}} has invited you to join team {{group_name}}",
"TextPart": "",
"HtmlPart": ["<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>{{name}}</body>
</html>"]
}
}
我无法上传此模板。它会显示错误
Error parsing parameter 'cli-input-json': Invalid JSON: Invalid control character at: line 6 column 32 (char 182)
JSON received: {
"Template": {
"TemplateName": "Group_Invitation",
"SubjectPart": "{{who}} has invited you to join team {{group_name}}",
"TextPart": "",
"HtmlPart": ["<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>{{name}}</body>
</html>"]
}
}
我不知道如何处理多行的htmlpart。
答案 0 :(得分:5)
您要发送的数据应预先格式化为有效的JSON文件。为了确保它有效,你需要逃避一些特殊的特性:
<强>换行强>
以\ n
回车转义\ r
您可以使用一些在线工具来验证您的JSON。其中一个是jsonlint.com
另请注意,HTML中的新行表示为<br />
,而不是文件中的新文字行。
您的JSON文件格式应如下:
{
"Template":{
"TemplateName": "Group_Invitation",
"SubjectPart": "{{who}} has invited you to join team {{group_name}}",
"TextPart": "",
"HtmlPart": "<!doctype html><html><head><meta charset=\"utf-8\"></head><body>{{name}}<br />some text on the other line</body></html>"
}
}
此外,您可以使用JSON Escape/ Unescape工具,并粘贴 HtmlPart ,以快速替换所有新行,并使其有效通过JSON发送。
逃脱 HtmlPart
<!doctype html>\r\n <html>\r\n <head>\r\n <meta charset=\"utf-8\">\r\n <\/head>\r\n <body>{{name}}<\/body>\r\n <\/html>
您现在可以使用此字符串,引用它并将其用作HtmlPart。 如您所见,此工具也会转义正斜杠,但不需要this回答
中所述答案 1 :(得分:1)
如果您尝试通过使用 create-email-template API 的 AWS CLI v2 完成此操作,模板已更改并且现在看起来有所不同。 您可以通过以下方式获取模板骨架:
> aws sesv2 create-email-template --generate-cli-skeleton
{
"TemplateName": "",
"TemplateContent": {
"Subject": "",
"Text": "",
"Html": ""
}
}