xxxxxxxxxx
#AWS SES v1 : Create Template
aws ses create-template --template="file://my-template.json"
#my-template.json
{
#template name to access in code and visible on aws ses console
"TemplateName": "MyTemplate",
#email subject goes here
"SubjectPart": "OTP to link Email",
#email content in json formatted html string
"HtmlPart": "HTML goes here"
}