You must be logged in to view saved presets
Creates an SES email template with placeholders for personalized greetings and favorite animal.
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
}