Skip to content

Commit

Permalink
tabs and spaces :(
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Funkhouser <[email protected]>
  • Loading branch information
golanglemonade committed Sep 5, 2024
1 parent ec7b721 commit d25af36
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ import (
func main() {
sender, err := resend.New("your_resend_api_token")
if err != nil {
log.Fatal(err)
log.Fatal(err)
}

msg := newman.NewEmailMessageWithOptions(
newman.WithFrom("[email protected]"),
newman.WithTo([]string{"[email protected]"}),
newman.WithSubject("Isn't sending emails with golang fun?"),
newman.WithHTML("<p>Oh Yes! Mark my words, Seinfeld! Your day of reckoning is coming</p>"),
)
newman.WithFrom("[email protected]"),
newman.WithTo([]string{"[email protected]"}),
newman.WithSubject("Isn't sending emails with golang fun?"),
newman.WithHTML("<p>Oh Yes! Mark my words, Seinfeld! Your day of reckoning is coming</p>"),
)

if err := sender.SendEmail(msg); err != nil {
log.Fatal(err)
log.Fatal(err)
}
}
```
Expand Down

0 comments on commit d25af36

Please sign in to comment.