You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added documentation for the new `fern deep` command that allows users to
send emails directly to Deep, our co-founder. The command supports optional
--subject and --message flags for pre-populating email content.
Copy file name to clipboardExpand all lines: fern/products/cli-api-reference/pages/commands.mdx
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ hideOnThisPage: true
14
14
|[`fern logout`](#fern-logout)| Log out of the Fern CLI |
15
15
|[`fern export`](#fern-export)| Export an OpenAPI spec for your API |
16
16
|[`fern api update`](#fern-api-update)| Manually update your OpenAPI spec |
17
+
|[`fern deep`](#fern-deep)| Send an email to Deep, our co-founder |
17
18
18
19
## Documentation commands
19
20
@@ -587,4 +588,44 @@ hideOnThisPage: true
587
588
```
588
589
</CodeBlock>
589
590
</Accordion>
591
+
592
+
<Accordion title="fern deep">
593
+
594
+
Use `fern deep` to send an email directly to Deep, our co-founder. This command opens your default email client with a pre-addressed message to Deep.
595
+
596
+
<CodeBlock title="terminal">
597
+
```bash
598
+
fern deep [--subject <subject>] [--message <message>]
599
+
```
600
+
</CodeBlock>
601
+
602
+
When you run this command without any options, it will open your email client with Deep's email address pre-filled. You can also provide a subject line and message body directly from the command line.
603
+
604
+
### subject
605
+
606
+
Use `--subject` to specify a subject line for your email to Deep.
607
+
608
+
```bash
609
+
fern deep --subject "Question about SDK generation"
610
+
```
611
+
612
+
### message
613
+
614
+
Use `--message` to include a message body in your email to Deep.
615
+
616
+
```bash
617
+
fern deep --message "Hi Deep, I have a question about..."
618
+
```
619
+
620
+
You can also combine both options:
621
+
622
+
```bash
623
+
fern deep --subject "Feedback" --message "Love the new CLI features!"
624
+
```
625
+
626
+
<Note>
627
+
This command is a convenient way to reach out to our team with questions, feedback, or just to say hello!
0 commit comments