38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
---
|
|
title: Email Channel Setup
|
|
description: Setting up Email Channel in Chatwoot
|
|
sidebarTitle: Email Channel Setup
|
|
---
|
|
|
|
## Configure Email Channel
|
|
|
|
<Note>
|
|
Email channels require [conversation continuity configured](/docs/self-hosted/configuration/features/email-channel/conversation-continuity)
|
|
</Note>
|
|
|
|
1. Enable `channel_email` (Login to rails console and execute the following)
|
|
|
|
```bash
|
|
account = Account.find(1)
|
|
account.enabled_features // This would list enabled features.
|
|
account.enable_features('channel_email')
|
|
account.save!
|
|
```
|
|
|
|
2. Now head over to inboxes page and create an email inbox with the support email as care@your-domain.com
|
|

|
|
3. Now Add Agents who can have access to the email channel box.
|
|
4. Now you will get the email channel box address in the last step.
|
|

|
|
5. Now create a forward rule in your care@your-domain.com inbox to forward emails to the address obtained at inbox creation step.
|
|

|
|
6. You should be able to receive emails in your newly created email inbox in chatwoot.
|
|

|
|
|
|
### Sendgrid
|
|
|
|
You can send out emails only from a verified email address in SendGrid. For sending emails from wildcard domain, do verification at domain level instead of individual email.
|
|
|
|
### Testing On Local
|
|
|
|
You can visit `http://localhost:3000/rails/conductor/action_mailbox/inbound_emails/new` to send inbound mails from local to chatwoot inbox. |