export function magicLinkEmail(verifyUrl: string): { subject: string; text: string; html: string } { const subject = "Your AnyDrop sign-in link"; const text = `Hi, Click the link below to sign in to AnyDrop. It expires in 15 minutes and can only be used once. ${verifyUrl} If you didn't request this, you can safely ignore this email. — AnyDrop `; const html = `

Sign in to AnyDrop

Click the button below to sign in. The link expires in 15 minutes and can only be used once.

Sign in

Or copy this link into your browser:

${verifyUrl}


If you didn't request this, you can safely ignore this email.

`; return { subject, text, html }; }