Skip to content

Commit c6df4e2

Browse files
committed
Add --fernie flag to CLI reference for emailing both co-founders
Introduced the --fernie flag that allows users to send emails to both Deep and Danny simultaneously. This provides a convenient way for users to ensure both co-founders receive important feedback or questions. Changes include: - Added --fernie to the main commands table - Created comprehensive accordion documentation section - Documented all three options: --message, --subject, and --respond_to - Provided usage examples for contacting both founders - Added helpful tip explaining when to use --fernie The documentation follows the same pattern as --dsinghvi and --dsheridan for consistency across all co-founder contact commands.
1 parent b7e9226 commit c6df4e2

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

fern/products/cli-api-reference/pages/commands.mdx

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ hideOnThisPage: true
1616
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
1717
| [`fern --dsinghvi`](#fern---dsinghvi) | Send an email to Deep, our co-founder |
1818
| [`fern --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder |
19+
| [`fern --fernie`](#fern---fernie) | Send an email to both co-founders |
1920

2021
## Documentation commands
2122

@@ -699,4 +700,59 @@ hideOnThisPage: true
699700
</Tip>
700701

701702
</Accordion>
703+
704+
<Accordion title="fern --fernie">
705+
706+
Use `fern --fernie` to send an email to both Deep and Danny, our co-founders. This is perfect when you want to ensure both founders see your feedback, questions, or ideas!
707+
708+
<CodeBlock title="terminal">
709+
```bash
710+
fern --fernie [--message <your-message>] [--subject <subject>] [--respond_to <email>]
711+
```
712+
</CodeBlock>
713+
714+
When run without options, this command will open your default email client with a pre-addressed message to both co-founders.
715+
716+
### message
717+
718+
Use `--message` to include a specific message in your email.
719+
720+
```bash
721+
fern --fernie --message "Love the new SDK generation features!"
722+
```
723+
724+
### subject
725+
726+
Use `--subject` to set a custom subject line for your email.
727+
728+
```bash
729+
fern --fernie --subject "Feature Request: GraphQL Support"
730+
```
731+
732+
### respond_to
733+
734+
Use `--respond_to` to provide your email address so the co-founders can respond to you.
735+
736+
```bash
737+
fern --fernie --respond_to "[email protected]"
738+
```
739+
740+
### Example usage
741+
742+
```bash
743+
# Open email client
744+
fern --fernie
745+
746+
# Send a quick message to both founders
747+
fern --fernie --message "Thanks for building Fern!" --respond_to "[email protected]"
748+
749+
# Send detailed feedback with all options
750+
fern --fernie --subject "Product Feedback" --message "The entire platform is amazing!" --respond_to "[email protected]"
751+
```
752+
753+
<Tip>
754+
Use `--fernie` when you want both Deep and Danny to see your message. They love hearing from the community!
755+
</Tip>
756+
757+
</Accordion>
702758
</AccordionGroup>

0 commit comments

Comments
 (0)