// @flow import * as React from 'react'; import EmailTemplate from './components/EmailLayout'; import Body from './components/Body'; import Button from './components/Button'; import Heading from './components/Heading'; import Header from './components/Header'; import Footer from './components/Footer'; import EmptySpace from './components/EmptySpace'; export type Props = { name: string, guest: boolean, actorName: string, actorEmail: string, teamName: string, teamUrl: string, }; export const inviteEmailText = ({ teamName, actorName, actorEmail, teamUrl, guest, }: 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}${guest ? '?guest=true' : ''} `; export const InviteEmail = ({ teamName, actorName, actorEmail, teamUrl, guest, }: Props) => { return (
Join {teamName} on Outline

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