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