Enabling Email a Card Message

Table of Contents

In order to enable Email a card message, the following steps must be completed.

  1. Create a New Subdomain (or buy an additional Domain) and attach it to Microsoft 365 / Exchange On Prem:
  2. Configure SMTP relay for this domain: link
  3. Open KanBo’s appsettings.json:
    • Go to https://your-kanbo-name.scm.azurewebsites.net -> Debug Console -> PowerShell -> site -> wwwroot -> edit appsettings.json
    • Add the following lines in the “plugins” section. Change mydomain-com.mail.protection.outlook.com to your subdomain from MX record (you can preview it in the Microsoft 365 admin settings).
    • Optionally, You can test whether everything works fine by sending a test email by configuring your custom domain sender to name@your-custom-domain.com and custom domain recipient as your-existing-mail@domain.com to which you would like to receive a test email. If there is no need for further testing, the last 5 lines can be removed
       {
    "type": "email.smtp",
    "connect":
     {
      "host": "mydomain-com.mail.protection.outlook.com,
      "port": 25,
      "options": "start-tls"
     }
   },
   {
    "type": "test-email",
    "from": "somerandoname@your-custom-domain.com",
    "to": "your-existing-mail@domain.com"
   },

Was this article helpful?

Please, contact us if you have any additional questions.