Fixes: Welcome email dashboard location (#886)

* Fixes: Welcome email dashboard location
Updated logo in email

* 💚
This commit is contained in:
Tom Moor
2019-01-27 12:30:53 +00:00
committed by GitHub
parent 1a6a7d04e5
commit 476bab9333
8 changed files with 25 additions and 17 deletions

View File

@@ -83,14 +83,14 @@ export class Mailer {
}
};
welcome = async (opts: { to: string }) => {
welcome = async (opts: { to: string, teamUrl: string }) => {
this.sendMail({
to: opts.to,
title: 'Welcome to Outline',
previewText:
'Outline is a place for your team to build and share knowledge.',
html: <WelcomeEmail />,
text: welcomeEmailText,
html: <WelcomeEmail {...opts} />,
text: welcomeEmailText(opts),
});
};