Getting startedSDKs and AI toolsPythonCopy pageOfficial Python SDK — pip install resentInstall the Resent client: $pip install resent 1import os2from resent import Resent34resent = Resent(os.environ["RESENT_API_KEY"])56result = resent.emails.send(7 from_="Acme <noreply@yourdomain.com>",8 to="you@example.com",9 subject="Hello World",10 html="<strong>It works!</strong>",11)1213print(result.submission_id) Links pypi.org/project/resent github.com/resentmail/resent-python Quickstart Node.js SDK Go SDK