Creates an SES email template with placeholders for personalized greetings and favorite animal.

Terraform Template

resource "aws_ses_template" "MyTemplate" {
  html = "<h1>Hello {{name}},</h1><p>Your favorite animal is {{favoriteanimal}}.</p>"
  name = "MyTemplate"
  subject = "Greetings, {{name}}!"
  text = <<-EOF
    Hello {{name}},
    Your favorite animal is {{favoriteanimal}}.
  EOF
}