From e4f5224f42d363329af7ac0e05afbc6b2b5f1a77 Mon Sep 17 00:00:00 2001 From: Ian Stahnke Date: Thu, 29 Jun 2017 02:44:19 +1000 Subject: [PATCH] set ses email content type to utf-8 instead of string (#841) --- lemur/plugins/lemur_email/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lemur/plugins/lemur_email/plugin.py b/lemur/plugins/lemur_email/plugin.py index ab27d45d..e1eb90bc 100644 --- a/lemur/plugins/lemur_email/plugin.py +++ b/lemur/plugins/lemur_email/plugin.py @@ -63,12 +63,12 @@ def send_via_ses(subject, body, targets): Message={ 'Subject': { 'Data': subject, - 'Charset': 'string' + 'Charset': 'UTF-8' }, 'Body': { 'Html': { 'Data': body, - 'Charset': 'string' + 'Charset': 'UTF-8' } } }