File tree 4 files changed +7
-2
lines changed
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ We’re longtime users of Action Mailer and wanted something similar for our typ
27
27
28
28
To get started with Mailing, check out the [ official docs] ( https://www.mailing.run/docs ) .
29
29
30
+ <br />
31
+
30
32
## ●  ;  ;  ; Contributing
31
33
32
34
Want to improve Mailing? Incredible. Try it out, file an issue or open a PR.
Original file line number Diff line number Diff line change @@ -94,7 +94,9 @@ export default function DocsLayout({ children }) {
94
94
}
95
95
) }
96
96
>
97
- < h3 className = "text-white text-2xl pt-7 -mb-2" > Docs</ h3 >
97
+ < Link href = "/docs" >
98
+ < h3 className = "text-white text-2xl pt-7 -mb-2" > Docs</ h3 >
99
+ </ Link >
98
100
< button className = "hidden search border text-sm bg-gray-800 border-gray-800 text-slate-500 hover:text-blue w-full transition-all duration-300 text-left rounded-md px-2 pt-1 pb-[5px]" >
99
101
< svg
100
102
className = "fill-slate-500 transition-all duration-300 inline -mt-[3px] mr-2"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const NewsletterSection = ({
20
20
< MjmlColumn
21
21
paddingBottom = { 32 }
22
22
paddingTop = { 32 }
23
- borderBottom = { noBorder ? "" : `1px dotted ${ colors . gray500 } ` }
23
+ borderBottom = { noBorder ? null : `1px dotted ${ colors . gray500 } ` }
24
24
>
25
25
{ children }
26
26
</ MjmlColumn >
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { buildSendMail } from "mailing-core";
3
3
4
4
const transport = nodemailer . createTransport ( {
5
5
host : "email-smtp.us-east-1.amazonaws.com" ,
6
+ pool : true ,
6
7
port : 587 ,
7
8
auth : {
8
9
user : process . env . MAILING_SES_USER ,
You can’t perform that action at this time.
0 commit comments