Auto-Login Supported

Cursor + TigerMail

Integrate TigerMail with Cursor AI IDE. The AI-first code editor with intelligent code generation. Get working email code in seconds with AI-powered setup.

Cursor Features

Automatic device authorization

  • Device authorization flow support
  • Inline code generation
  • Context-aware completions
  • Automatic import handling
  • TypeScript support built-in
Auto-Login Enabled

Cursor can automatically open your browser to authenticate with TigerMail. No manual API key copying needed.

Integration Steps

1

Open Cursor's AI chat

Press Cmd+L (or Ctrl+L) to open the AI chat panel

2

Paste the instructions

Paste our AI instructions and describe your email needs

3

Authorize when prompted

Cursor will open a browser window to authenticate

4

Apply the generated code

Review and apply the generated email integration

Generated Code Example

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

// Cursor generates TypeScript with types:
interface SendEmailRequest {
  to: string[];
  subject: string;
  html: string;
  from: string;
}

async function sendEmail(data: SendEmailRequest) {
  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(data),
  });
  return response.json();
}

Start using Cursor with TigerMail

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