Skip to content

Commit 93bfe99

Browse files
committed
Fixing content argument
1 parent c7dfb17 commit 93bfe99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sample/emails/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main(args):
1818
user_from = args.get("from")
1919
user_to = args.get("to")
2020
user_subject = args.get("subject")
21-
content = args.get("content", "this message was sent from the sendgrid API")
21+
content = args.get("content")
2222

2323
if not user_from:
2424
return {

0 commit comments

Comments
 (0)