From 398dff31d8ff8f42339b291b529862f975fd3ec8 Mon Sep 17 00:00:00 2001 From: Petr Pavlik Date: Sun, 17 Nov 2024 16:53:54 +0100 Subject: [PATCH] fix readme typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e72e005..534bf9f 100644 --- a/README.md +++ b/README.md @@ -66,12 +66,12 @@ This will give you easy access to the SDK methods using `application` and `reque app.get { req async in let emailBody = """ - This is a sample body that supports **markdown**. Plain html is also supported. + This is a sample body that supports **markdown**. HTML is also supported. """ try await indiePitcher.sendEmail( data: .init( - to: "petr@indiepitcher.com", subject: "Hello from AWS Lambda!", body: emailBody, + to: "petr@indiepitcher.com", subject: "Hello from Vapor!", body: emailBody, bodyFormat: .markdown)) return "ok"