SES 模板/电子邮件无法呈现日语文本

Saj*_*sal 3 amazon-web-services amazon-ses aws-cli

我创建了 SES 模板并从 aws-cli 呈现它,如您所见,非英语文本被替换为“?”,无论是纯文本版本还是 HTML 版本。如何解决这个问题?PS:我也通过发送电子邮件进行了检查。

以下是我的 TestMainTemplate.json 文件

{
        "Template": {
            "TemplateName": "TestTemplate01",
            "SubjectPart": "????? {{name}}!",
            "HtmlPart": "<h1>????? {{name}}??</h1><p>???????AWS?????{{favoriteservice}}????</p>",
            "TextPart": "?? {{name}}??\r\n???????AWS?????{{favoriteservice}}????\r\n??"
        }
    }
Run Code Online (Sandbox Code Playgroud)

命令从 cli 将模板上传到 aws SES:

aws ses create-template --cli-input-json file://TestMainTemplate.json --region us-east-1

渲染模板的命令:

aws ses test-render-template --template-name TestTemplate01 --template-data '{ "name": "??" , "favoriteservice": "SES" }' --region us-east-1

输出:

Date: 2018-09-14T03:27:46.913Z
Message-ID: <5990...........ec2-user@ip-......ec2.internal>
Subject: ????? ??!
MIME-Version: 1.0
Content-Type: multipart/alternative;
    boundary="----=_Part_106793_202759574.1536895666913"
Content-Transfer-Encoding: quoted-printable

------=_Part_106793_202759574.1536895666913
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit

?? ????
???????AWS?????SES????
??
------=_Part_106793_202759574.1536895666913
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit

<h1>????? ????</h1><p>???????AWS?????SES????</p>
------=_Part_106793_202759574.1536895666913--
Run Code Online (Sandbox Code Playgroud)

Sve*_*ing 5

我对德语 ä ö ü 有问题。我将上传的 json 文件的编码从 UTF-8 更改为 ANSI,一切正常。
上传模板并通过 AWS CLI 发送 get-template 命令后,我已经可以看到乱码了。将编码更改为 ANSI 为我完成了这项工作。

哦,我不必为此更改控制台编码!

  • 对我来说,将 utf-8 更改为 iso 8859-1 有效! (2认同)