From f6b5b4ff45fb2c587c29cc235ff5421ee22dd28a Mon Sep 17 00:00:00 2001 From: Kyle Roberts Date: Fri, 12 Oct 2018 15:29:06 -0600 Subject: [PATCH] Update USE_CASES.md I missed the subject dynamic content on my PR. I should not get any points for this update. --- USE_CASES.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/USE_CASES.md b/USE_CASES.md index 40a964e9..f86554e7 100644 --- a/USE_CASES.md +++ b/USE_CASES.md @@ -50,6 +50,7 @@ mail.from = Email.new(email: 'test@example.com') personalization = Personalization.new personalization.add_to(Email.new(email: 'test@example.com')) personalization.add_dynamic_template_data({ + "subject" => "Testing Templates", "name" => "Example User", "city" => "Denver" }) @@ -83,7 +84,8 @@ data = JSON.parse('{ } ], "dynamic_template_data": { - "name": "Example User", + "subject": "Testing Templates", + "name": "Example User", "city": "Denver" } }