// @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 = { name: string, actorName: string, actorEmail: string, teamName: string, teamUrl: string, }; export const inviteEmailText = ({ teamName, actorName, actorEmail, teamUrl, }: Props) => ` Join ${teamName} on Outline ${actorName} (${actorEmail}) has invited you to join Outline, a place for your team to build and share knowledge. Join now: ${teamUrl} `; export const InviteEmail = ({ teamName, actorName, actorEmail, teamUrl, }: Props) => { return (
Join {teamName} on Outline

{actorName} ({actorEmail}) has invited you to join Outline, a place for your team to build and share knowledge.