import resend resend.api_key = "re_QWi4f35B_4Acrrcg6utsjYGDaW5cyPx78" params: resend.Emails.SendParams = { "from": "Acme ", "to": ["notaranag@gmail.com"], "subject": "hello world", "html": "

it works!

" } email = resend.Emails.send(params) print(email)