-
Notifications
You must be signed in to change notification settings - Fork 93
feat(portal): Reply to and from FAQ #4858
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
dc121c3
43c6521
91bfe3e
69f148f
c2a83ea
2ec80e1
2d8837a
bd1ac59
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| To customize the reply-to and from, do the following in the {{site.konnect_short_name}} UI: | ||
| 1. Set up a [custom domain](/dev-portal/custom-domains/) in {{site.dev_portal}}. | ||
| 1. In the Portal Editor, navigate to the email settings. | ||
| 1. Click **Email notification settings**. | ||
| 1. Enter your from name and email. | ||
| Reply-to email is optional. | ||
|
|
||
| Alternatively, you can use the {{site.dev_portal}} API: | ||
| 1. Send a POST request to the [`/portals/{portalId}/custom-domain` endpoint](/api/konnect/portal-management/v3/#/operations/create-portal-custom-domain): | ||
| {% capture create_custom_domain %} | ||
| {% konnect_api_request %} | ||
| url: /v3/portals/$DEV_PORTAL_ID/custom-domain | ||
| method: POST | ||
| body: | ||
| hostname: example.com | ||
| enabled: true | ||
| ssl: {} | ||
| {% endkonnect_api_request %} | ||
|
cloudjumpercat marked this conversation as resolved.
|
||
| {% endcapture %} | ||
| {{ create_custom_domain | indent: 3 }} | ||
|
|
||
| 2. Send a POST request to the [`/portals/{portalId}/email-config` endpoint](/api/konnect/portal-management/v3/#/operations/create-portal-email-config). | ||
|
cloudjumpercat marked this conversation as resolved.
Outdated
|
||
| {% capture create_email_config %} | ||
|
cloudjumpercat marked this conversation as resolved.
|
||
| {% konnect_api_request %} | ||
| url: /v3/portals/$DEV_PORTAL_ID/email-config | ||
| method: POST | ||
| body: | ||
| domain_name: example.com | ||
|
Check failure on line 28 in app/_includes/faqs/portal-email.md
|
||
| from_name: KongAir | ||
|
Check failure on line 29 in app/_includes/faqs/portal-email.md
|
||
| from_email: user@example.com | ||
|
Check failure on line 30 in app/_includes/faqs/portal-email.md
|
||
| reply_to_email: admin@example.com | ||
|
Check failure on line 31 in app/_includes/faqs/portal-email.md
|
||
| {% endkonnect_api_request %} | ||
|
cloudjumpercat marked this conversation as resolved.
|
||
| {% endcapture %} | ||
| {{ create_email_config | indent: 3 }} | ||
Uh oh!
There was an error while loading. Please reload this page.