Skip to content

Commit

Permalink
examples: fix emails
Browse files Browse the repository at this point in the history
  • Loading branch information
drish committed Apr 22, 2024
1 parent a4b32b0 commit 19e94c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/batch_email_send.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
params: List[resend.Emails.SendParams] = [
{
"sender": "[email protected]",
"to": ["[email protected]"],
"to": ["[email protected]"],
"subject": "hey",
"html": "<strong>hello, world!</strong>",
},
{
"sender": "[email protected]",
"to": ["[email protected]"],
"to": ["[email protected]"],
"subject": "hello",
"html": "<strong>hello, world!</strong>",
},
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

params: resend.Emails.SendParams = {
"sender": "[email protected]",
"to": ["[email protected]"],
"to": ["[email protected]"],
"subject": "hi",
"html": "<strong>hello, world!</strong>",
"reply_to": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion examples/with_attachments.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Define the email parameters
params: resend.Emails.SendParams = {
"sender": "[email protected]",
"to": ["[email protected]"],
"to": ["[email protected]"],
"subject": "hi",
"html": "<strong>hello, world!</strong>",
"attachments": [attachment],
Expand Down

0 comments on commit 19e94c4

Please sign in to comment.