// @flow import * as React from "react"; import Body from "./components/Body"; import Button from "./components/Button"; import EmailTemplate from "./components/EmailLayout"; import EmptySpace from "./components/EmptySpace"; import Footer from "./components/Footer"; import Header from "./components/Header"; import Heading from "./components/Heading"; export type Props = { token: string, teamUrl: string, }; export const signinEmailText = ({ token, teamUrl }: Props) => ` Use the link below to signin to Outline: ${process.env.URL}/auth/email.callback?token=${token} If your magic link expired you can request a new one from your team’s signin page at: ${teamUrl} `; export const SigninEmail = ({ token, teamUrl }: Props) => { return (
Magic signin link

Click the button below to signin to Outline.

If your magic link expired you can request a new one from your team’s signin page at: {teamUrl}