Automatic device authorization
Cursor can automatically open your browser to authenticate with TigerMail. No manual API key copying needed.
Press Cmd+L (or Ctrl+L) to open the AI chat panel
Paste our AI instructions and describe your email needs
Cursor will open a browser window to authenticate
Review and apply the generated email integration
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();
}