Manual Setup

ChatGPT + TigerMail

Integrate TigerMail with ChatGPT by OpenAI. OpenAI's conversational AI for code generation and assistance. Get working email code in seconds with AI-powered setup.

ChatGPT Features

Manual API key setup

  • Conversational code generation
  • Step-by-step explanations
  • Multi-language examples
  • Error debugging help
  • Best practices guidance

Integration Steps

1

Get your API key

Register at TigerMail and create an API key

2

Share instructions with ChatGPT

Paste our instructions and describe your project

3

Get generated code

ChatGPT will generate email integration code

4

Copy to your project

Add the code and API key to your project

Generated Code Example

This is an example of what ChatGPT will generate for you.

// ChatGPT generates code for your framework:
// Next.js API Route example:
import { NextResponse } from "next/server";

export async function POST(request: Request) {
  const { to, subject, html } = await request.json();

  const response = await fetch("https://tigermail.io/api/v1/send", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.TIGERMAIL_API_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      to: [to],
      subject,
      html,
      from: process.env.FROM_EMAIL,
    }),
  });

  const data = await response.json();
  return NextResponse.json(data);
}

Start using ChatGPT with TigerMail

Get 1,000 free emails per month. Set up in under 5 minutes.