Skip to content

Commit 02c9543

Browse files
authored
Update README.md
1 parent 021ee8f commit 02c9543

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,29 @@ TODO
5454

5555

5656
### AWS Lambda
57-
TODO
57+
This is how you can send an email from within an AWS Lambda function. See the [full example repository](https://github.com/IndiePitcher/IndiePitcherLambdaSwiftExample).
58+
```swift
59+
@main
60+
struct MyLambda: SimpleLambdaHandler {
61+
62+
private let indiePitcherApiKey = "sc_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
63+
64+
func handle(_ event: String, context: LambdaContext) async throws -> String {
65+
66+
let indiePitcher = IndiePitcher(client: .shared, apiKey: indiePitcherApiKey)
67+
68+
let emailBody = """
69+
This is an email sent from a **AWS Lambda function**!
70+
"""
71+
72+
try await indiePitcher.sendEmail(
73+
data: .init(
74+
to: "[email protected]", subject: "Hello from ASS Lambda!", body: emailBody,
75+
bodyFormat: .markdown))
76+
77+
return "Email sent!"
78+
}
79+
}
80+
```
5881

5982

0 commit comments

Comments
 (0)