File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,20 @@ extension Application {
64
64
This will give you easy access to the SDK methods using ` application ` and ` request ` .
65
65
``` swift
66
66
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"
68
78
}
69
79
```
80
+ See the [ full example repository] ( https://github.com/IndiePitcher/VaporExample ) .
70
81
71
82
<br />
72
83
@@ -126,7 +137,7 @@ struct MyLambda: SimpleLambdaHandler {
126
137
127
138
try await indiePitcher.sendEmail (
128
139
data : .init (
129
- to :
" [email protected] " ,
subject :
" Hello from ASS Lambda!" ,
body : emailBody,
140
+ to :
" [email protected] " ,
subject :
" Hello from AWS Lambda!" ,
body : emailBody,
130
141
bodyFormat : .markdown ))
131
142
132
143
return " Email sent!"
You can’t perform that action at this time.
0 commit comments