We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e49fa commit 6261fb8Copy full SHA for 6261fb8
packages/web/emails/Newsletter.tsx
@@ -20,7 +20,7 @@ const NewsletterSection = ({
20
<MjmlColumn
21
paddingBottom={32}
22
paddingTop={32}
23
- borderBottom={noBorder ? "" : `1px dotted ${colors.gray500}`}
+ borderBottom={noBorder ? null : `1px dotted ${colors.gray500}`}
24
>
25
{children}
26
</MjmlColumn>
packages/web/emails/index.ts
@@ -3,6 +3,7 @@ import { buildSendMail } from "mailing-core";
3
4
const transport = nodemailer.createTransport({
5
host: "email-smtp.us-east-1.amazonaws.com",
6
+ pool: true,
7
port: 587,
8
auth: {
9
user: process.env.MAILING_SES_USER,
0 commit comments