Skip to content

Commit b732449

Browse files
authored
Update README.md
1 parent 58d548f commit b732449

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,20 @@ extension Application {
6464
This will give you easy access to the SDK methods using `application` and `request`.
6565
```swift
6666
app.get { req async in
67-
try await req.indiePitcher.listContacts()
67+
68+
let emailBody = """
69+
This is a sample body that supports **markdown**. Plain html is also supported.
70+
"""
71+
72+
try await indiePitcher.sendEmail(
73+
data: .init(
74+
to: "[email protected]", subject: "Hello from AWS Lambda!", body: emailBody,
75+
bodyFormat: .markdown))
76+
77+
return "ok"
6878
}
6979
```
80+
See the [full example repository](https://github.com/IndiePitcher/VaporExample).
7081

7182
<br/>
7283

@@ -126,7 +137,7 @@ struct MyLambda: SimpleLambdaHandler {
126137

127138
try await indiePitcher.sendEmail(
128139
data: .init(
129-
to: "[email protected]", subject: "Hello from ASS Lambda!", body: emailBody,
140+
to: "[email protected]", subject: "Hello from AWS Lambda!", body: emailBody,
130141
bodyFormat: .markdown))
131142

132143
return "Email sent!"

0 commit comments

Comments
 (0)