1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-01 21:24:45 +02:00

Server: Fixed support emails

This commit is contained in:
Laurent Cozic 2021-08-03 19:47:18 +01:00
parent 0fc4bc05f6
commit 724aa726ca
3 changed files with 13 additions and 1 deletions

View File

@ -43,6 +43,8 @@ export interface EnvVariables {
ERROR_STACK_TRACES?: string;
SUPPORT_EMAIL?: string;
SUPPORT_NAME?: string;
BUSINESS_EMAIL?: string;
}
@ -135,6 +137,7 @@ export async function initConfig(envType: Env, env: EnvVariables, overrides: any
const packageJson = await readPackageJson(`${rootDir}/package.json`);
const stripePublicConfig = loadStripeConfig(envType === Env.BuildTypes ? Env.Dev : envType, `${rootDir}/stripeConfig.json`);
const appName = env.APP_NAME || 'Joplin Server';
const viewDir = `${rootDir}/src/views`;
const appPort = env.APP_PORT ? Number(env.APP_PORT) : 22300;
const baseUrl = baseUrlFromEnv(env, appPort);
@ -143,7 +146,7 @@ export async function initConfig(envType: Env, env: EnvVariables, overrides: any
config_ = {
appVersion: packageJson.version,
appName: env.APP_NAME || 'Joplin Server',
appName,
isJoplinCloud: apiBaseUrl.includes('.joplincloud.com'),
env: envType,
rootDir: rootDir,
@ -163,6 +166,7 @@ export async function initConfig(envType: Env, env: EnvVariables, overrides: any
termsEnabled: env.TERMS_ENABLED === '1',
accountTypesEnabled: env.ACCOUNT_TYPES_ENABLED === '1',
supportEmail,
supportName: env.SUPPORT_NAME || appName,
businessEmail: env.BUSINESS_EMAIL || supportEmail,
...overrides,
};

View File

@ -52,6 +52,13 @@ export default class EmailService extends BaseService {
};
}
if (senderId === EmailSender.Support) {
return {
name: this.config.supportName,
email: this.config.supportEmail,
};
}
throw new Error(`Invalid sender ID: ${senderId}`);
}

View File

@ -105,6 +105,7 @@ export interface Config {
mailer: MailerConfig;
stripe: StripeConfig;
supportEmail: string;
supportName: string;
businessEmail: string;
isJoplinCloud: boolean;
}