Enabling Email a card message
Last modified:
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
3) Open KanBo's web config:
- Go to https://your-kanbo-name.scm.azurewebsites.net -> Debug Console -> PowerShell -> site -> wwwroot -> edit web.config.
- Add the following line before </plugins>
Change mydomain-com.mail.protection.outlook.com to your domain from MX record (you can preview it in the Microsoft 365 admin settings).
You can test whether everything works fine by sending a test email. For that configure your custom domain instead of @your-custom-domain.com.
Change your-existing-mail@domain.com to existing email address to which you would like to receive a test email.
<email.smtp> <connect host="mydomain-com.mail.protection.outlook.com" port="25" options="start-tls" /> </email.smtp> <test-email from="somerandoname@your-custom-domain.com" to="your-existing-mail@domain.com"/>