Skip to content

Commit

Permalink
Merge pull request #2846 from jainpawan21/fix/NV-1623-inbound-parse-docs
Browse files Browse the repository at this point in the history
fix: add info for saas only in inbound parse webhook
  • Loading branch information
scopsy authored Feb 20, 2023
2 parents 02d1ac8 + 3fc5fd6 commit 22d16e8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export function PolishingBanner() {
segment.track('Polishing Banner Clicked');
}}
target={'_blank'}
rel="noreferrer"
style={{ textDecoration: 'underline', display: 'inline-block', marginLeft: 5 }}
>
Learn More.
Expand Down
5 changes: 3 additions & 2 deletions docs/docs/community/run-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,10 @@ cd apps/web && npm run cypress:open
### Different ports used by the services the project spins up

- **3000** - API
- **3002** - WebSocket service
- **3002** - WebSocket Service
- **4200** - Web Management UI
- **4500** - Iframe embed for notification center
- **4701** - Iframe embed for notification center
- **4500** - Widget Service

### Testing providers

Expand Down
8 changes: 7 additions & 1 deletion docs/docs/platform/inbound-parse-webhook.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Inbound Webhook is a feature that allows processing of incoming emails for a dom
The feature parses the contents of the email and POSTs the information to a specified URL in a
multipart/form-data format.

:::info
This feature is available only in our SaaS. This feature will not work in self hosted environment.
:::

## To set up Inbound Webhook, follow these steps

1. Set up an MX Record:
Expand All @@ -25,4 +29,6 @@ multipart/form-data format.
- Enable the Inbound Parse feature.
- Set the Webhook URL to the location where you want the parsed data to be POSTed.

Note: The Webhook URL must be publicly accessible.
:::note
The Webhook URL must be publicly accessible.
:::
7 changes: 7 additions & 0 deletions docs/docs/platform/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,10 @@ await novu.trigger('<REPLACE_WITH_EVENT_NAME_FROM_ADMIN_PANEL>', {
},
});
```

## FAQ

<details>
<summary>How to send dynamic HTML content as value of variable?</summary>
Use triple curly braces variable like <code>&#123;&#123;&#123;htmlVariable&#125;&#125;&#125;</code> .
</details>

0 comments on commit 22d16e8

Please sign in to comment.