Code

cookbook/agent_concepts/tools/resend_tools.py
from agno.agent import Agent
from agno.tools.resend import ResendTools

agent = Agent(
    tools=[ResendTools()],
    show_tool_calls=True,
    markdown=True,
)
agent.print_response("Send an email to test@example.com with the subject 'Test Email'")

Usage

1

Create a virtual environment

Open the Terminal and create a python virtual environment.

2

Set your API key

export RESEND_API_KEY=xxx
3

Install libraries

pip install -U resend agno
4

Run Agent