Click the settings gear icon (⚙) in the left panel.
Navigate to Customization >> select Email In.
Select a board from the list on the left and enable Email In.
Alternatively, to create or view board-specific Email In, navigate to Boards, hover over the required board, click the options menu (⋯), and select Email In from the pop-up.
General Setup
Email In ID: This ID is auto-populated by Qntrl and is uneditable. You can send emails to this ID to create a new card in the board.
Card Requestor: Select a user to be set as the default requestor for every card created in this board via Email In.
Data Mapping: Map email components like date, from address, CC, and attachments with the board's fields here. The mail subject and body are mapped with the title and description fields by default.
Mail Date: Only date fields from the board will be listed in the drop-down.
Mail From and CC Address: Single-line and multi-line board fields will only be listed in the drop-down.
Attachment: Attachment or file fields can only be chosen from the drop-down.
Advanced Options:
Scripts: Add server scripts that can parse different inputs from the email and execute when a new card is created using Email In.
Enable and use AI code assistant from Qntrl AI Hub in Settings to generate scripts based on your request.
Once the setup is configured and saved, users can start sending emails to the Email In ID to create new cards in the boards.
This approach is useful when:
Replies received after a card is closed should be treated as new requests
You want to prevent updates or comments being added to closed cards
You need clean separation between historical conversations and new requests
This approach is useful for support, service desk, or maintenance workflows where each new reply after closure should be treated as a new request.
Navigate to settings (⚙) >> Customization >> select Email In.
Select the required board from the left panel.
Under Advanced Options, in Scripts, click Add Script
Under Create from Scratch, click Create.
Add the script in the editor (refer to sample script) and click Publish.
Click Save to apply the configuration.
Sample Script
function onMail() {
let stageName = current.job.getStageName();
console.log("stage name - " + stageName);
if (stageName == 'Closed') {
current.mailMeta.addAsJob();
} else {
console.log("No changes required");
return;
}
}
Replace 'Closed' with the exact stage name used in your board if it differs.Prevents updates to closed cards
Automatically creates new requests for reopened conversations
Maintains clean tracking of recurring issues
Keeps historical discussions separate from new request
Ensure Email In is enabled for the board
Verify the email is sent to the correct Email In ID
Check whether criteria configured in Email In are satisfied
Review the Activities section for failure details
By default, replies to existing Email In threads are added as comments to the related card.
To create a new card from replies to closed cards, configure a server script using current.mailMeta.addAsJob().
Ensure the Email In server script:
Checks the card stage correctly
Uses the exact stage name configured in the board (e.g., Closed)
Is added and enabled in the Scripts section of Email In
Verify that:
Attachment mapping is configured correctly
A file or attachment field is mapped in Data Mapping
The email attachment size is within supported limits
Check whether:
The correct board fields are mapped in Data Mapping
The selected field type supports the email component
The incoming email contains valid values for the mapped fields
Ensure the reply is part of the original email thread
Verify Email In is still enabled for the board
Check whether the email thread was modified externally
Try the following:
Refresh the Email In configuration page
Verify the Email In ID is active
Recheck scripts and criteria configurations
Send a fresh test email to validate the setup
Possible reasons:
Criteria conditions are not met
Email format is invalid
Required field mappings are missing
Scripts are stopping card creation
Check the Activities section for detailed logs.
Navigate to the Activities section under Email In configuration to view:
Card creation logs
Comment posting logs
Success and failure status details