pull/7270/head
Joe Au-Yeung 2023-02-19 00:40:14 -05:00
parent 5e9fda7eb6
commit ff93467d15
2 changed files with 0 additions and 20 deletions

View File

@ -35,17 +35,6 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => {
uid: "xxyPr4cg2xx4XoS2KeMEQy",
metadata: {},
recurringEvent: null,
team: {
name: "Team example",
members: [
{ name: "team member 1", email: "team@example.com" },
{ name: "team member 2", email: "team2@example.com" },
{ name: "team member 3", email: "team3@example.com" },
{ name: "team member 4", email: "team4@example.com" },
{ name: "team member 5", email: "team5@example.com" },
{ name: "team member 6", email: "team6@example.com" },
],
},
appsStatus: [
{
appName: "Outlook Calendar",

View File

@ -26,15 +26,6 @@ function detectTransport(): SendmailTransport.Options | SMTPConnection.Options |
return transport;
}
if (process.env.EMAIL_SERVER_PORT) {
const port = parseInt(process.env.EMAIL_SERVER_PORT!);
const transport = {
port,
};
return transport;
}
return {
sendmail: true,
newline: "unix",