| 1 | import { CreateEmailOptions } from "resend"; |
| 2 | |
| 3 | export interface ResendEmailOptions |
| 4 | extends Omit<CreateEmailOptions, "to" | "from"> { |
| 5 | to: string; |
| 6 | from?: string; |
| 7 | variant?: "primary" | "notifications" | "marketing"; |
| 8 | unsubscribeUrl?: string; // Custom unsubscribe URL for List-Unsubscribe header |
| 9 | } |
| 10 | |
| 11 | export type ResendBulkEmailOptions = ResendEmailOptions[]; |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…