---
title: Introduction
description: Explore code examples and integration guides for Reloop.
icon: siReadthedocs
---
> For the complete documentation index, see [llms-docs.txt](/llms-docs.txt) or the site index [llms.txt](/llms.txt). Full docs corpus: [llms-full-docs.txt](/llms-full-docs.txt). Prefer markdown URLs (append `.md`) for agent consumption. Product skill: [skill.md](/skill.md).


# Examples

Explore code examples and integration guides to connect Reloop using your favorite language, framework, or SMTP.

## Node.js

Integrate Reloop into Node.js applications.

<CardGroup cols={2}>
  <Card icon="siNextdotjs" title="Next.js">
    Send emails in Next.js Server Actions and Route Handlers.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/nodejs/nextjs" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/nextjs" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siExpress" title="Express">
    Connect Reloop to an Express REST API backend.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/nodejs/express" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/express" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## Python

Integrate Reloop into Python applications.

<CardGroup cols={3}>
  <Card icon="siFastapi" title="FastAPI">
    Asynchronous email sending with FastAPI.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/python/fastapi" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/fastapi" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siDjango" title="Django">
    Configure email sending using Django's backend.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/python/django" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/django" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siFlask" title="Flask">
    Simple email templates in Flask.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/python/flask" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/flask" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## Go

Integrate Reloop into Go applications.

<CardGroup cols={1}>
  <Card icon="siGo" title="Gin">
    Send emails through a Go Gin web server.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/go/gin" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/gin" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## Ruby

Integrate Reloop into Ruby applications.

<CardGroup cols={1}>
  <Card icon="siRubyonrails" title="Ruby on Rails">
    Configure Rails Action Mailer to send via Reloop.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/ruby/rails" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/rails" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## PHP

Integrate Reloop into PHP applications.

<CardGroup cols={1}>
  <Card icon="siLaravel" title="Laravel">
    Configure Laravel Mail driver to route through Reloop.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/php/laravel" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/laravel" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## Rust

Integrate Reloop into Rust applications.

<CardGroup cols={1}>
  <Card icon="siRust" title="Axum">
    Asynchronous email dispatch inside an Axum web framework.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/rust/axum" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/axum" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>

## SMTP Relay

Configure standard SMTP library examples.

<CardGroup cols={3}>
  <Card icon="siNodedotjs" title="Nodemailer (Node.js)">
    Standard Node SMTP using Nodemailer.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/nodemailer" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-nodemailer" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siPython" title="Python SMTP">
    Built-in smtplib Python SMTP.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/python" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-python" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siGo" title="Go SMTP">
    Built-in net/smtp Go implementation.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/go" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-go" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siPhp" title="PHP SMTP">
    Standard PHP SMTP connection.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/php" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-php" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siRuby" title="Ruby SMTP">
    Standard Ruby Net::SMTP integration.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/ruby" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-ruby" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
  <Card icon="siRust" title="Rust SMTP">
    Lettre SMTP library for Rust.
    <div className="mt-4 flex gap-4 text-xs font-semibold">
      <a href="/docs/examples/smtp/rust" className="text-primary hover:underline">Read Guide →</a>
      <a href="https://github.com/reloop-labs/reloop-examples/tree/main/smtp-rust" target="_blank" rel="noopener noreferrer" className="text-gray-500 hover:text-primary dark:text-gray-400 dark:hover:text-white hover:underline">GitHub ↗</a>
    </div>
  </Card>
</CardGroup>
