Enabling Sending Card Messages as Emails

Table of Contents

For more information, see the article about sending card messages as emails.

To enable sending card messages as emails:

  1. Create a new subdomain (or buy an additional Domain) and attach it to Microsoft 365 / Exchange on-premises:
  2. Configure SMTP relay for this domain: link
  3. Go to https://your-kanbo-name.scm.azurewebsites.net > Debug Console > PowerShell > site > wwwroot > edit appsettings.json.
  4. Add the following lines in the “Plugins” section. Change “mydomain-com.mail.protection.outlook.com” to your subdomain from the MX record (you can preview it in the Microsoft 365 admin settings).
  5. Optionally, you can test whether everything is working properly by sending a test email. To do so, configure your custom domain sender as name@your-custom-domain.com and your custom domain recipient as your-existing-email@domain.com, where you would like to receive the test email. If you don’t need to do any more testing, you can remove the last five lines.
       {
    "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.